首页 > 移动平台 > 详细

Android BitmapDrawable

时间:2015-01-06 16:59:26      阅读:259      评论:0      收藏:0      [点我收藏+]

功能:显示缩略图,大小为40*40

   //通过openRawResource获取一个inputStream对象  
   InputStream inputStream = getResources().openRawResource(R.drawable.test);  
   //通过一个InputStream创建一个BitmapDrawable对象  
   BitmapDrawable drawable = new BitmapDrawable(inputStream);  
   //通过BitmapDrawable对象获得Bitmap对象  
   Bitmap bitmap = drawable.getBitmap();  
   //利用Bitmap对象创建缩略图  
   bitmap = ThumbnailUtils.extractThumbnail(bitmap, 40, 40);  
   //imageView 显示缩略图的ImageView  
   imageView.setImageBitmap(bitmap);    

 功能:image2从image1中截取120*120大小后显示,截取起始坐标为(x,y)

  BitmapDrawable bitmapDrawable = (BitmapDrawable) image1.getDrawable();
   //获取第一个图片显示框中的位图
   Bitmapbitmap = bitmapDrawable.getBitmap();
   //显示图片的指定区域
   image2.setImageBitmap(Bitmap.createBitmap(bitmap, x, y, 120, 120));
   image2.setAlpha(alpha);

 

Android BitmapDrawable

原文:http://www.cnblogs.com/zhujiabin/p/4206159.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!