Android中常用的bitmap处理方法 (bitmap工具类)

2024-06-09 23:18

本文主要是介绍Android中常用的bitmap处理方法 (bitmap工具类),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

收集了很多bitmap相关的处理方法,几乎全部应用在项目中,所以特记录下!

[java]  view plain copy
  1. package com.tmacsky.utils;  
  2.   
  3. import java.io.ByteArrayOutputStream;  
  4. import java.io.IOException;  
  5.   
  6. import android.content.Context;  
  7. import android.content.res.Resources;  
  8. import android.graphics.Bitmap;  
  9. import android.graphics.BitmapFactory;  
  10. import android.graphics.Canvas;  
  11. import android.graphics.Matrix;  
  12. import android.graphics.Paint;  
  13. import android.graphics.PixelFormat;  
  14. import android.graphics.PorterDuffXfermode;  
  15. import android.graphics.Rect;  
  16. import android.graphics.RectF;  
  17. import android.graphics.Bitmap.Config;  
  18. import android.graphics.PorterDuff.Mode;  
  19. import android.graphics.drawable.BitmapDrawable;  
  20. import android.graphics.drawable.Drawable;  
  21. import android.view.View;  
  22. import android.view.View.MeasureSpec;  
  23.   
  24. public class ImageUtils {  
  25.   
  26.     //--->bitmap相关  
  27.     //参考网站http://www.cnblogs.com/fighter/archive/2012/02/20/android-bitmap-drawable.html  
  28.     // 见博客:http://blog.sina.com.cn/s/blog_afb547c60101j7qn.html  
  29.     /** 
  30.      * View转成bitmap 
  31.      * @param view 
  32.      * @return 
  33.      */  
  34.     public static Bitmap convertViewToBitmap(View view) {  
  35.         view.setDrawingCacheEnabled(true);  
  36.         view.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),  
  37.                 MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));  
  38.         view.layout(00, view.getMeasuredWidth(), view.getMeasuredHeight());  
  39.         view.buildDrawingCache();  
  40.         return view.getDrawingCache();  
  41.     }  
  42.     /** 
  43.      * 缩放Drawable 
  44.      * @param drawable 
  45.      * @param w  缩放后需要的宽度 
  46.      * @param h  缩放后需要的高度 
  47.      * @return 
  48.      */  
  49.     public static Drawable zoomDrawable(Drawable drawable, int w, int h) {  
  50.         int width = drawable.getIntrinsicWidth();  
  51.         int height = drawable.getIntrinsicHeight();  
  52.         // drawable转换成bitmap  
  53.         Bitmap oldbmp = drawableToBitmap(drawable);  
  54.         // 创建操作图片用的Matrix对象  
  55.         Matrix matrix = new Matrix();  
  56.         // 计算缩放比例  
  57.         float sx = ((float) w / width);  
  58.         float sy = ((float) h / height);  
  59.         // 设置缩放比例  
  60.         matrix.postScale(sx, sy);  
  61.         // 建立新的bitmap,其内容是对原bitmap的缩放后的图  
  62.         Bitmap newbmp = Bitmap.createBitmap(oldbmp, 00, width, height,  
  63.                 matrix, true);  
  64.         return new BitmapDrawable(newbmp);  
  65.     }  
  66.       
  67.     /** 
  68.      * 缩放bitmap 
  69.      * @param oldBitmap 输入bitmap 
  70.      * @param newWidth  
  71.      * @param newHeight 
  72.      * @return 
  73.      */  
  74.     public static Bitmap zoomBitmap(Bitmap oldBitmap, int newWidth, int newHeight) {  
  75.         // 获得图片的宽高  
  76.         int width = oldBitmap.getWidth();  
  77.         int height = oldBitmap.getHeight();  
  78.         // 计算缩放比例  
  79.         float scaleWidth = ((float) newWidth) / width;  
  80.         float scaleHeight = ((float) newHeight) / height;  
  81.         // 取得想要缩放的matrix参数  
  82.         Matrix matrix = new Matrix();  
  83.         matrix.postScale(scaleWidth, scaleHeight);  
  84.         // 得到新的图片  
  85.         Bitmap newbm = Bitmap.createBitmap(oldBitmap, 00, width, height, matrix,  
  86.                 true);  
  87.         return newbm;  
  88.     }  
  89.     /** 
  90.      * 缩放网络图片 依赖于zoomBitmap 
  91.      * @param img 
  92.      * @param newWidth 
  93.      * @param newHeight 
  94.      * @return 
  95.      */  
  96.     public static Bitmap zoomImg(String img, int newWidth, int newHeight) {  
  97.         // 图片源  
  98.         Bitmap bm = BitmapFactory.decodeFile(img);  
  99.         if (null != bm) {  
  100.             return zoomBitmap(bm, newWidth, newHeight);  
  101.         }  
  102.         return null;  
  103.     }  
  104.     /** 
  105.      * 缩放网络图片 依赖于zoomBitmap 
  106.      * @param context 
  107.      * @param img 
  108.      * @param newWidth 
  109.      * @param newHeight 
  110.      * @return 
  111.      */  
  112.     public static Bitmap zoomImg(Context context, String img, int newWidth,  
  113.             int newHeight) {  
  114.         // 图片源  
  115.         try {  
  116.             Bitmap bm = BitmapFactory.decodeStream(context.getAssets()  
  117.                     .open(img));  
  118.             if (null != bm) {  
  119.                 return zoomBitmap(bm, newWidth, newHeight);  
  120.             }  
  121.         } catch (IOException e) {  
  122.             // TODO Auto-generated catch block  
  123.             e.printStackTrace();  
  124.         }  
  125.         return null;  
  126.     }  
  127.     /** 
  128.      * 判断bitmap是否存在 
  129.      * @param bitmap 
  130.      * @return 
  131.      */  
  132.     public static boolean bitmapAvailable(Bitmap bitmap) {  
  133.         return bitmap != null && bitmap.getWidth() > 0 && bitmap.getHeight() > 0;  
  134.     }  
  135.     /** 
  136.      * drawable 转成bitmap 
  137.      * @param drawable 
  138.      * @return 
  139.      */  
  140.     public static Bitmap drawableToBitmap(Drawable drawable) {  
  141.         // 取 drawable 的长宽  
  142.         int w = drawable.getIntrinsicWidth();  
  143.         int h = drawable.getIntrinsicHeight();  
  144.         // 取 drawable 的颜色格式  
  145.         Bitmap.Config config = drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888  
  146.                 : Bitmap.Config.RGB_565;  
  147.         // 建立对应 bitmap  
  148.         Bitmap bitmap = Bitmap.createBitmap(w, h, config);  
  149.         // 建立对应 bitmap 的画布  
  150.         Canvas canvas = new Canvas(bitmap);  
  151.         drawable.setBounds(00, w, h);  
  152.         // 把 drawable 内容画到画布中  
  153.         drawable.draw(canvas);  
  154.         return bitmap;  
  155.     }  
  156.     /** 
  157.      * Bitmap转换成Drawable 
  158.      * @param context 
  159.      * @param bitmap 
  160.      * @return 
  161.      */  
  162.     public static Drawable bitmapToDrawable(Context context,Bitmap bitmap){  
  163.         //因为BtimapDrawable是Drawable的子类,最终直接使用bd对象即可。  
  164.         BitmapDrawable bd= new BitmapDrawable(context.getResources(), bitmap);  
  165.         return bd;  
  166.     }  
  167.       
  168.     /** 
  169.      * 从资源中获取Bitmap 
  170.      * @param context 
  171.      * @param req  R.drawable.icon(eg.) 
  172.      * @return 
  173.      */  
  174.     public Bitmap getBitmapFromResources(Context context,int req){  
  175.           Resources res = context.getResources();  
  176.           Bitmap bmp = BitmapFactory.decodeResource(res, req);  
  177.           return bmp;  
  178.     }  
  179.       
  180.     /** 
  181.      * Byte[] -> Bitmap的转换 
  182.      */  
  183.     public Bitmap Bytes2Bimap(byte[] b) {  
  184.         if (b.length != 0) {  
  185.             return BitmapFactory.decodeByteArray(b, 0, b.length);  
  186.         } else {  
  187.             return null;  
  188.         }  
  189.     }  
  190.     /** 
  191.      * Bitmap->Byte[]的转换 
  192.      * @param bm 
  193.      * @return 
  194.      */  
  195.      public byte[] Bitmap2Bytes(Bitmap bm) {  
  196.          ByteArrayOutputStream baos = new ByteArrayOutputStream();  
  197.          bm.compress(Bitmap.CompressFormat.PNG, 100, baos);  
  198.          return baos.toByteArray();  
  199.     }  
  200.     /** 
  201.      * 获取圆角图片 
  202.      * @param bitmap 
  203.      * @param roundPx 圆角的弧度 
  204.      * @return 
  205.      */  
  206.     public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, float roundPx) {  
  207.         int w = bitmap.getWidth();  
  208.         int h = bitmap.getHeight();  
  209.         Bitmap output = Bitmap.createBitmap(w, h, Config.ARGB_8888);  
  210.         Canvas canvas = new Canvas(output);  
  211.         final int color = 0xff424242;  
  212.         final Paint paint = new Paint();  
  213.         final Rect rect = new Rect(00, w, h);  
  214.         final RectF rectF = new RectF(rect);  
  215.         paint.setAntiAlias(true);  
  216.         canvas.drawARGB(0000);  
  217.         paint.setColor(color);  
  218.         canvas.drawRoundRect(rectF, roundPx, roundPx, paint);  
  219.         paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));  
  220.         canvas.drawBitmap(bitmap, rect, rect, paint);  
  221.         return output;  
  222.     }  
  223. }  

转自:http://blog.csdn.net/tmacsky/article/details/38121283


这篇关于Android中常用的bitmap处理方法 (bitmap工具类)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1046579

相关文章

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

无人叉车3d激光slam多房间建图定位异常处理方案-墙体画线地图切分方案

墙体画线地图切分方案 针对问题:墙体两侧特征混淆误匹配,导致建图和定位偏差,表现为过门跳变、外月台走歪等 ·解决思路:预期的根治方案IGICP需要较长时间完成上线,先使用切分地图的工程化方案,即墙体两侧切分为不同地图,在某一侧只使用该侧地图进行定位 方案思路 切分原理:切分地图基于关键帧位置,而非点云。 理论基础:光照是直线的,一帧点云必定只能照射到墙的一侧,无法同时照到两侧实践考虑:关

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

常用的jdk下载地址

jdk下载地址 安装方式可以看之前的博客: mac安装jdk oracle 版本:https://www.oracle.com/java/technologies/downloads/ Eclipse Temurin版本:https://adoptium.net/zh-CN/temurin/releases/ 阿里版本: github:https://github.com/

高效录音转文字:2024年四大工具精选!

在快节奏的工作生活中,能够快速将录音转换成文字是一项非常实用的能力。特别是在需要记录会议纪要、讲座内容或者是采访素材的时候,一款优秀的在线录音转文字工具能派上大用场。以下推荐几个好用的录音转文字工具! 365在线转文字 直达链接:https://www.pdf365.cn/ 365在线转文字是一款提供在线录音转文字服务的工具,它以其高效、便捷的特点受到用户的青睐。用户无需下载安装任何软件,只

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

浅谈主机加固,六种有效的主机加固方法

在数字化时代,数据的价值不言而喻,但随之而来的安全威胁也日益严峻。从勒索病毒到内部泄露,企业的数据安全面临着前所未有的挑战。为了应对这些挑战,一种全新的主机加固解决方案应运而生。 MCK主机加固解决方案,采用先进的安全容器中间件技术,构建起一套内核级的纵深立体防护体系。这一体系突破了传统安全防护的局限,即使在管理员权限被恶意利用的情况下,也能确保服务器的安全稳定运行。 普适主机加固措施:

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

30常用 Maven 命令

Maven 是一个强大的项目管理和构建工具,它广泛用于 Java 项目的依赖管理、构建流程和插件集成。Maven 的命令行工具提供了大量的命令来帮助开发人员管理项目的生命周期、依赖和插件。以下是 常用 Maven 命令的使用场景及其详细解释。 1. mvn clean 使用场景:清理项目的生成目录,通常用于删除项目中自动生成的文件(如 target/ 目录)。共性规律:清理操作