摘要:
/** * 得到一定高度的图片 * * @param height * @param imagePath * @return */ public Bitmap getImageByHeight(float height, String imagePath) { BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; // 获取这个图片的宽和高 ... 阅读全文