<span style="font-size:18px;">        //功能:显示缩略图,大小为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);</span>


<span style="font-size:18px;">//功能: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);</span>
http://blog.csdn.net/lindonghai/article/details/8228894

相关文章:

  • 2021-12-27
  • 2021-09-04
  • 2021-07-23
  • 2021-07-02
  • 2021-04-30
  • 2021-08-06
  • 2021-04-03
  • 2021-06-16
猜你喜欢
  • 2022-12-23
  • 2021-10-31
  • 2022-12-23
  • 2021-12-24
  • 2022-12-23
  • 2021-10-24
  • 2021-11-20
相关资源
相似解决方案