摘要: /** * 得到一定高度的图片 * * @param height * @param imagePath * @return */ public Bitmap getImageByHeight(float height, String imagePath) { BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; // 获取这个图片的宽和高 ... 阅读全文
posted @ 2013-10-24 07:49 skyko 阅读(548) 评论(0) 推荐(0) 编辑