




已阅读5页,还剩5页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
示例:void shareShotScreen() LinearLayout layout = (LinearLayout) findViewById(R.id.plan_layout);Bitmap bitmap = ImageUtils.convertBitmap(layout);String path = ImageUtils.saveImage25(bitmap);ShareUtils.ShareImage(this, share plan, slim plan, share slim plan., path);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.content.Context;import android.database.Cursor;import android.graphics.Bitmap;import android.graphics.BitmapFactory;import android.graphics.BitmapFactory.Options;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Matrix;import .Uri;import vider.MediaStore;import android.text.Layout;import android.util.FloatMath;import android.util.Log;import android.view.Display;import android.view.View;import android.view.View.MeasureSpec;import android.widget.ImageView;import android.widget.Toast;public class ImageUtils private static final String TAG = ImageUtils;public static Bitmap 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 null;Bitmap bitmap = null;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 = BitmapFactory.decodeStream(cr.openInputStream(uri);bitmap = getCompredBitmap(path);/ imageView.setImageBitmap(getBitmap(path, 100, 200);imageView.setImageBitmap(bitmap); else Toast.makeText(activity, Please select image.,Toast.LENGTH_SHORT).show(); catch (Exception e) e.printStackTrace();return bitmap;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 & heightRatio 1) if (widthRatio heightRatio) / 压缩到原来的(1/widthRatios)op.inSampleSize = widthRatio; else op.inSampleSize = heightRatio;op.inJustDecodeBounds = false;bmp = BitmapFactory.decodeFile(path, op);return bmp;/* * 截取可见屏幕部分视图 * param activity * return */public static Bitmap shotScreen(Activity activity) View view = activity.getWindow().getDecorView();Display display = activity.getWindowManager().getDefaultDisplay();view.layout(0, 0, display.getWidth(), display.getHeight();/ 允许当前窗口保存缓存信息,这样getDrawingCache()方法才会返回一个Bitmapview.setDrawingCacheEnabled(true);Bitmap bmp = Bitmap.createBitmap(view.getDrawingCache();return bmp;/* * 截取view的根层可见屏幕部分的视图 * param activity * return */public static Bitmap getRootViewBitmap(View view) return shotViewBitmap(view.getRootView();/* * 截取可见屏幕部分的view视图 * param activity * return */public static Bitmap shotViewBitmap(View v) v.clearFocus(); v.setPressed(false); Bitmap bmp = null; try v.layout(0, 0, v.getWidth(), v.getHeight(); / 允许当前窗口保存缓存信息,这样getDrawingCache()方法才会返回一个Bitmap v.setDrawingCacheEnabled(true); v.buildDrawingCache(); bmp = Bitmap.createBitmap(v.getDrawingCache(); catch (Exception e) e.printStackTrace();return bmp;/* * convert view to integral bitmap and return it * 获取view的完整视图图片(即使没有显示出来的部分) * param view : view or layout * return */public static Bitmap convertBitmap(View view) return convertViewToBitmap(view, view.getWidth(), view.getHeight();/* * convert measured view to integral bitmap and return it * 通过计算的方法宽高后,
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年福建省龙岩市武平县事业单位招聘5人模拟试卷及答案详解(夺冠系列)
- 2025年动叶可调轴流电站用风机合作协议书
- 2025年体外诊断仪器产品合作协议书
- 2025广西南宁市消防救援支队政府专职消防员招聘3人模拟试卷及1套参考答案详解
- 2025安徽阜阳市颍上县人民医院引进博士研究生2人考前自测高频考点模拟试题及答案详解(有一套)
- 2025年西安经开第五小学教职工招聘模拟试卷附答案详解(模拟题)
- 2025年宁波市鄞州区第二医院医共体钟公庙分院招聘编外工作人员2人考前自测高频考点模拟试题及答案详解(名校卷)
- 喜迎国庆演讲稿
- 2025年济宁邹城市事业单位公开招聘工作人员(教育类)(27人)模拟试卷及参考答案详解1套
- 2025年四氟丙烯合作协议书
- 2023-2024年贵州省劳动合同样本范本书电子版完整版
- JJG 475-2008电子式万能试验机
- 耳部全息铜砭刮痧
- 煤气发生炉拆除方案
- 《新概念英语》第三册课文详解及课后答案
- 医院培训课件:《疑难病例讨论制度及护理查房制度解读》
- 聚氨酯管道保温施工方案
- 金匮要略-黄芪桂枝五物汤
- J17J177 钢丝网架珍珠岩复合保温外墙板建筑构造
- 酒店账单-水单-住宿
- 手游经典案例《王者荣耀》的营销分析
评论
0/150
提交评论