Android编程实现压缩图片并加载显示的方法
程序员文章站
2023-12-09 13:33:03
本文实例讲述了android编程实现压缩图片并加载显示的方法。分享给大家供大家参考,具体如下:
解析:
图片压缩的关键就是
options.insamples...
本文实例讲述了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程序设计有所帮助。