Android中Bitmap,byte[],Drawable相互转化

简介:

一、相关概念

1、Drawable就是一个可画的对象,其可能是一张位图(BitmapDrawable),也可能是一个图形(ShapeDrawable),还有可能是一个图层(LayerDrawable),我们根据画图的需求,创建相应的可画对象
2、Canvas画布,绘图的目的区域,用于绘图
3、Bitmap位图,用于图的处理
4、Matrix矩阵

二、Bitmap

1、从资源中获取Bitmap

     Resources res = getResources();
     Bitmap bmp = BitmapFactory.decodeResource(res, R.drawable.icon);


2、Bitmap → byte[]

      [] Bitmap2Bytes(Bitmap bm) {
         ByteArrayOutputStream baos =  ByteArrayOutputStream();
         bm.compress(Bitmap.CompressFormat.PNG, 100, baos);
          baos.toByteArray();
     }


3、byte[] → Bitmap

 

      Bitmap Bytes2Bimap([] b) {
          (b.length != 0) {
              BitmapFactory.decodeByteArray(b, 0, b.length);
         }  {
              ;
         }
     }

 

4、Bitmap缩放

       Bitmap zoomBitmap(Bitmap bitmap,  width,  height) {
          w = bitmap.getWidth();
          h = bitmap.getHeight();
         Matrix matrix =  Matrix();
          scaleWidth = (() width / w);
          scaleHeight = (() height / h);
         matrix.postScale(scaleWidth, scaleHeight);
         Bitmap newbmp = Bitmap.createBitmap(bitmap, 0, 0, w, h, matrix, );
          newbmp;
     }

 

5、将Drawable转化为Bitmap

   Bitmap drawableToBitmap(Drawable drawable) {
                   w = drawable.getIntrinsicWidth();
          h = drawable.getIntrinsicHeight();
 
                  Bitmap.Config config = drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888
                 : Bitmap.Config.RGB_565;
                  Bitmap bitmap = Bitmap.createBitmap(w, h, config);
                  Canvas canvas =  Canvas(bitmap);
         drawable.setBounds(0, 0, w, h);
                  drawable.draw(canvas);
          bitmap;
     }

 

6、获得圆角图片 

       Bitmap getRoundedCornerBitmap(Bitmap bitmap,  roundPx) {
          w = bitmap.getWidth();
          h = bitmap.getHeight();
         Bitmap output = Bitmap.createBitmap(w, h, Config.ARGB_8888);
         Canvas canvas =  Canvas(output);
           color = 0xff424242;
          Paint paint =  Paint();
          Rect rect =  Rect(0, 0, w, h);
          RectF rectF =  RectF(rect);
         paint.setAntiAlias();
         canvas.drawARGB(0, 0, 0, 0);
         paint.setColor(color);
         canvas.drawRoundRect(rectF, roundPx, roundPx, paint);
         paint.setXfermode( PorterDuffXfermode(Mode.SRC_IN));
         canvas.drawBitmap(bitmap, rect, rect, paint);
 
          output;
     }

 

7、获得带倒影的图片


       Bitmap createReflectionImageWithOrigin(Bitmap bitmap) {
           reflectionGap = 4;
          w = bitmap.getWidth();
          h = bitmap.getHeight();
 
         Matrix matrix =  Matrix();
         matrix.preScale(1, -1);
 
         Bitmap reflectionImage = Bitmap.createBitmap(bitmap, 0, h / 2, w,
                 h / 2, matrix, );
 
         Bitmap bitmapWithReflection = Bitmap.createBitmap(w, (h + h / 2),
                 Config.ARGB_8888);
 
         Canvas canvas =  Canvas(bitmapWithReflection);
         canvas.drawBitmap(bitmap, 0, 0, );
         Paint deafalutPaint =  Paint();
         canvas.drawRect(0, h, w, h + reflectionGap, deafalutPaint);
 
         canvas.drawBitmap(reflectionImage, 0, h + reflectionGap, );
 
         Paint paint =  Paint();
         LinearGradient shader =  LinearGradient(0, bitmap.getHeight(), 0,
                 bitmapWithReflection.getHeight() + reflectionGap, 0x70ffffff,
                 0x00ffffff, TileMode.CLAMP);
         paint.setShader(shader);
                  paint.setXfermode( PorterDuffXfermode(Mode.DST_IN));
                  canvas.drawRect(0, h, w, bitmapWithReflection.getHeight()
                 + reflectionGap, paint);
 
          bitmapWithReflection;
     }

 

 三、Drawable

1、Bitmap转换成Drawable

 Bitmap bm=xxx;  BitmapDrawable bd=  BitmapDrawable(getResource(), bm); 
 因为BtimapDrawable是Drawable的子类,最终直接使用bd对象即可。

2、Drawable缩放


       Drawable zoomDrawable(Drawable drawable,  w,  h) {
          width = drawable.getIntrinsicWidth();
          height = drawable.getIntrinsicHeight();
                  Bitmap oldbmp = drawableToBitmap(drawable);
                  Matrix matrix =  Matrix();
                   sx = (() w / width);
          sy = (() h / height);
                  matrix.postScale(sx, sy);
                  Bitmap newbmp = Bitmap.createBitmap(oldbmp, 0, 0, width, height,
                 matrix, );
           BitmapDrawable(newbmp);
     }

本文转自dyh7077063的博客http://dyh7077063.iteye.com/blog/970672













本文转自wauoen51CTO博客,原文链接: http://blog.51cto.com/7183397/1604493,如需转载请自行联系原作者





相关文章
|
2月前
|
存储 缓存 编解码
Android经典面试题之图片Bitmap怎么做优化
本文介绍了图片相关的内存优化方法,包括分辨率适配、图片压缩与缓存。文中详细讲解了如何根据不同分辨率放置图片资源,避免图片拉伸变形;并通过示例代码展示了使用`BitmapFactory.Options`进行图片压缩的具体步骤。此外,还介绍了Glide等第三方库如何利用LRU算法实现高效图片缓存。
61 20
Android经典面试题之图片Bitmap怎么做优化
|
6月前
|
XML 存储 编解码
android 目录结构中 drawable(hdpi,ldpi,mdpi) 的区别
android 目录结构中 drawable(hdpi,ldpi,mdpi) 的区别
215 1
|
3月前
|
XML Android开发 数据格式
"探秘Android Drawable魔法:一篇文章教你玩转StateListDrawable与AnimationDrawable!"
【8月更文挑战第18天】Drawable是Android中用于屏幕绘制的图形对象,StateListDrawable与AnimationDrawable是两种实用类型。StateListDrawable可根据控件状态变化显示不同图形,如按钮的点击反馈;AnimationDrawable则用于实现帧动画效果,常用于加载提示或动态图标。两者均可通过XML定义或代码创建,并轻松应用于View的背景中,有效增强应用的交互性和视觉体验。
51 0
|
5月前
|
存储 Java Android开发
Android上在两个Activity之间传递Bitmap对象
Android上在两个Activity之间传递Bitmap对象
36 2
|
5月前
|
XML API 开发工具
Android Bitmap 加载与像素操作
Android Bitmap 加载与像素操作
46 2
|
5月前
|
XML 前端开发 API
Android中实现Bitmap在自定义View中的放大与拖动
Android中实现Bitmap在自定义View中的放大与拖动
149 1
|
5月前
|
API Android开发
55. 【Android教程】位图:Bitmap
55. 【Android教程】位图:Bitmap
53 0
|
5月前
|
XML Java API
54. 【Android教程】图片资源:Drawable
54. 【Android教程】图片资源:Drawable
74 0
|
6月前
|
Android开发
[Android jni] Bitmap与Mat对象的相互转换
[Android jni] Bitmap与Mat对象的相互转换
202 0
|
6月前
|
存储 缓存 编解码
Android 性能优化: 解释Bitmap的优化策略。
Android 性能优化: 解释Bitmap的优化策略。
89 1