已阅读5页,还剩2页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
package com.xikang.android.slimcoach.utils;import java.io.ByteArrayOutputStream;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import com.xikang.android.slimcoach.Conf;import android.app.Activity;import android.content.ContentResolver;import android.database.Cursor;import android.graphics.Bitmap;import android.graphics.BitmapFactory;import android.graphics.BitmapFactory.Options;import android.graphics.Matrix;import .Uri;import vider.MediaStore;import android.util.FloatMath;import android.util.Log;import android.widget.ImageView;import android.widget.Toast;public class ImageUtils private static final String TAG = ImageUtils;public static void loadImage(Activity activity, ImageView imageView, Uri uri) if (Conf.INFO)Log.i(TAG, loadImage: local uri = + uri);if (uri != null & !uri.toString().startsWith(content:/) return;try / MediaStoreString pojo = MediaStore.Images.Media.DATA ;Cursor cursor = activity.managedQuery(uri, pojo, null, null, null);if (cursor != null & cursor.moveToFirst() ContentResolver cr = activity.getContentResolver();int colunm_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);String path = cursor.getString(colunm_index);if (Conf.INFO)Log.i(TAG, loadImage: path = + path);if (path.endsWith(.jpg) | path.endsWith(.png) Bitmap bitmap = BitmapFactory.decodeStream(cr.openInputStream(uri);/imageView.setImageBitmap(getBitmap(path, 100, 200);imageView.setImageBitmap(getCompredBitmap(path); else Toast.makeText(activity, Please select image.,Toast.LENGTH_SHORT).show(); catch (Exception e) e.printStackTrace();public static Bitmap getCompredBitmap(String srcPath) return compressDef(getResizeBitmap(srcPath);/* * get bitmap compressed to 100kb * param bitmap * return */public static Bitmap getCompredDefBitmap(Bitmap bitmap) return getCompredBitmap(bitmap, 100);/* * get bitmap compressed * param bitmap * param target_size unit is kb * return */public static Bitmap getCompredBitmap(Bitmap bitmap, int target_size) return compress(bitmap, target_size);private static Bitmap compressDef(Bitmap bitmap) return compress(bitmap, 100);/* * The cycle compression specify meet the specified target size(100kb) * * param bitmap * param target_size unit is kb * return */private static Bitmap compress(Bitmap bitmap, int target_size) ByteArrayOutputStream baos = new ByteArrayOutputStream();press(Bitmap.CompressFormat.JPEG, 100, baos);int quality = 100;int length = baos.toByteArray().length / 1024;if(Conf.INFO)Log.i(TAG, compress: length = + length + kb, target_size = + target_size + kb);/ The cycle compression specify meet the specified sizewhile (length target_size) baos.reset();quality -= 10;press(Bitmap.CompressFormat.JPEG, quality, baos);length = baos.toByteArray().length / 1024;if (!bitmap.isRecycled() bitmap.recycle();byte data = baos.toByteArray();int cp_length = data.length;Log.i(TAG, compressed image length = + cp_length / 1024+ kb);return BitmapFactory.decodeByteArray(data, 0, cp_length);/* * change image size: width and height * * param options * return */private static int getSimpleSize(BitmapFactory.Options options) int w = options.outWidth;int h = options.outHeight;float hh = 800f;float ww = 480f;int scale = 1;if (w h & w ww) scale = (int) (options.outWidth / ww); else if (w hh) scale = (int) (options.outHeight / hh);if (scale yScale ? xScale : yScale;op.inJustDecodeBounds = false;bmp = BitmapFactory.decodeFile(path, op);return bmp;public static Bitmap getBitmap2(String path, int width, int height) BitmapFactory.Options op = new BitmapFactory.Options();op.inJustDecodeBounds = true;Bitmap bmp = BitmapFactory.decodeFile(path, op);/ 编码后bitmap的宽高,bitmap除以屏幕宽度得到压缩比int widthRatio = (int) FloatMath.ceil(op.outWidth / (float) width);int heightRatio = (int) FloatMath.ceil(op.outHeight / (float) height);if (widthRatio 1 & heightRa
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 生物标志物在药物临床试验中的药物研发技术研究
- 生物材料支架在皮肤再生中的临床应用推广策略
- 生物材料临床应用中的卫生技术评估与医保准入策略
- 生物制品稳定性指示分析方法开发与验证
- 生物制剂失应答后IBD的特殊人群用药策略-1
- 食品检验员面试题及质量标准解析
- 副总经理面试题集及答案
- 甜味剂在儿童糖尿病饮食中的安全性
- 保险代理人职位面试问题集
- 助航灯光设备维修技能考试题库
- 甲醇安全培训试题及答案
- 高空作业绳索安全操作规范
- 2025上海静安区区管企业招聘中层管理人员17人笔试备考试卷附答案解析
- 急诊用药错误的FMEA分析与预防策略
- 2025年瓷砖及石材培训试题及答案
- 2026年供水公司安全三级教育培训管理制度
- (一模)六盘水市2026届高三高考适应性考试(一)英语试卷(含答案详解)
- 2025秋期版国开电大本科《管理英语4》一平台综合测试形考任务在线形考试题及答案
- 第一单元第1课 情感的抒发与理念的表达 教案 2024-2025学年人教版初中美术八年级下册
- 2023年研究生类社会工作硕士(MSW)考试题库
- 华中科技大学《编译原理》编译典型题解
评论
0/150
提交评论