摘要: /** * 从文件解析出Bitmap格式的图片 * * @param path * @param maxWidth * @param maxHeight * @return */ public static Bitmap decodeFile(String path, int maxWidth, int maxHeight){ BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBoun... 阅读全文
posted @ 2012-07-27 14:52 吴超文 阅读(429) 评论(0) 推荐(0)