Android编程实现压缩图片并加载显示的方法
更新时间:2017年10月16日 10:06:48 作者:CharlinGod
这篇文章主要介绍了Android编程实现压缩图片并加载显示的方法,涉及Android开发中图片的运算、压缩处理操作及界面布局显示压缩图片等相关实现技巧,需要的朋友可以参考下
本文实例讲述了Android编程实现压缩图片并加载显示的方法。分享给大家供大家参考,具体如下:
解析:
图片压缩的关键就是
options.inSampleSize = scale;
如果scale > 0,表示图片进行了压缩
/** * 压缩图片 * @author chen.lin * */ public class LoadImageActivity extends Activity implements OnClickListener { private Button mBtnLoad; private ImageView mImageView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_image_load); initViews(); } private void initViews() { mBtnLoad = (Button) findViewById(R.id.btnLoadImage); mImageView = (ImageView) findViewById(R.id.imageView); mBtnLoad.setOnClickListener(this); } @Override public void onClick(View v) { if (v == mBtnLoad) { Options options = new Options(); BitmapFactory.decodeFile("/sdcard/images/1.jpg", options); //不去真的解析图片,只是获取图片的头部信息,宽高 options.inJustDecodeBounds = true; //得到图片的真实宽高 int imageHeight = options.outHeight; int imageWidth = options.outWidth; //得到屏幕的宽高 WindowManager wm = (WindowManager) getSystemService(WINDOW_SERVICE); int screenHeight = wm.getDefaultDisplay().getHeight(); int screenWidth = wm.getDefaultDisplay().getWidth(); //得到缩放比例 int scale = 1; int scaleX = imageWidth / screenWidth; int scaleY = imageHeight / screenHeight; if (scaleX > scaleY & scaleX >=1) {//表示如果宽的缩放比例大于高的,并且scaleX>=1都为true scale = scaleX; } if (scaleY > scaleX & scaleY >=1) {//表示如果高的缩放比例大于宽的,并且scaleY>=1都为true scale = scaleY; } //解析图片 options.inJustDecodeBounds = false; //修改图片的缩放比例,如果scale=4说明图片缩小4倍,像数=1/16 options.inSampleSize = scale; Bitmap bm = BitmapFactory.decodeFile("/sdcard/images/1.jpg", options); mImageView.setImageBitmap(bm); } } }
布局文件
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <ImageView android:id="@+id/imageView" android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="1" /> <EditText android:id="@+id/editText1" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" > <requestFocus /> </EditText> <Button android:id="@+id/btnLoadImage" android:layout_width="fill_parent" android:layout_height="wrap_content" android:onClick="loadImage" android:text="加载图片" /> </LinearLayout>
更多关于Android相关内容感兴趣的读者可查看本站专题:《Android图形与图像处理技巧总结》、《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》
希望本文所述对大家Android程序设计有所帮助。
相关文章
解决Android Studio 格式化 Format代码快捷键问题
这篇文章主要介绍了解决Android Studio 格式化 Format代码快捷键问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2020-03-03Android给自定义按键添加广播和通过广播给当前焦点输入框赋值
这篇文章主要介绍了Android给自定义按键添加广播和通过广播给当前焦点输入框赋值的相关资料,需要的朋友可以参考下2016-10-10内存泄露导致Android 中setVisibility() 失效原理
这篇文章主要介绍了内存泄露导致Android 中setVisibility() 失效原理,文章围绕主题展开详细的内容介绍,具有一定的参考价值,感兴趣的小伙伴可以参考一下2022-07-07
最新评论