public final class BitmapUtils { public static final String TAG = "BitmapUtil"; private static int sShotScreenWidth = 480; private static int sShotScreenHeight = 720; private static int sShotScreenSize = sShotScreenWidth * sShotScreenHeight; @SuppressLint("StaticFieldLeak") private static Context mContext; @SuppressLint("StaticFieldLeak") private static Activity mActivity; public void init(Context context,Activity ac) { mContext=context; mActivity=ac; DisplayMetrics dm = new DisplayMetrics(); ac.getWindowManager().getDefaultDisplay().getMetrics(dm); //获取屏幕分辨率 sShotScreenWidth = dm.widthPixels; sShotScreenHeight = dm.heightPixels; sShotScreenSize = sShotScreenWidth * sShotScreenHeight; } /** * 图片合成 * * @param bitmap 位图1 * @param mark 位图2 * @return Bitmap */ public static Bitmap createBitmap(Bitmap bitmap, Bitmap mark) { int w = bitmap.getWidth(); int h = bitmap.getHeight(); int mW = mark.getWidth(); int mH = mark.getHeight(); Bitmap newbitmap = Bitmap.createBitmap(w, h, Config.ARGB_8888);// 创建一个长宽一样的位图 Canvas cv = new Canvas(newbitmap); cv.drawBitmap(bitmap, 0, 0, null);// 在 0,0坐标开始画入bitmap cv.drawBitmap(mark, w - mW , h - mH , null);// 在右下角画入水印mark cv.save(Canvas.ALL_SAVE_FLAG);// 保存 cv.restore();// 存储 return newbitmap; } /** * 放大缩小图片 * @param bitmap 位图 * @param w 新的宽度 * @param h 新的高度 * @return Bitmap */ public static Bitmap zoomBitmap(Bitmap bitmap, int w, int h) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); Matrix matrix = new Matrix(); float scaleWidht = ((float) w / width); float scaleHeight = ((float) h / height); matrix.postScale(scaleWidht, scaleHeight); return Bitmap.createBitmap(bitmap, 0, 0, width, height, matrix, true); } /** * 旋转图片 * @param bitmap 要旋转的图片 * @param angle 旋转角度 * @return bitmap */ public static Bitmap rotate(Bitmap bitmap,int angle) { Matrix matrix = new Matrix(); matrix.postRotate(angle); return Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true); } /** * 圆形图片 *@param source 位图 * @param strokeWidth 裁剪范围 0表示最大 * @param bl 是否需要描边 * @param bl 画笔粗细 * @param bl 颜色代码 * @return bitmap */ public static Bitmap createCircleBitmap(Bitmap source, int strokeWidth, boolean bl,int edge,int color) { int diameter = source.getWidth() < source.getHeight() ? source.getWidth() : source.getHeight(); Bitmap target = Bitmap.createBitmap(diameter, diameter, Config.ARGB_8888); Canvas canvas = new Canvas(target);//创建画布 Paint paint = new Paint(); paint.setAntiAlias(true); canvas.drawCircle(diameter / 2, diameter / 2, diameter / 2, paint);//绘制圆形 paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));//取相交裁剪 canvas.drawBitmap(source, strokeWidth, strokeWidth, paint); if(bl) { if (color == 0) color = 0xFFFEA248;//默认橘黄色 paint.setColor(color); paint.setStyle(Paint.Style.STROKE);//描边 paint.setStrokeWidth(edge); canvas.drawCircle(diameter / 2, diameter / 2, diameter / 2, paint); } return target; } /** * 圆角图片 * @param bitmap 位图 * @param rx x方向上的圆角半径 * @param ry y方向上的圆角半径 * @param bl 是否需要描边 * @param bl 画笔粗细 * @param bl 颜色代码 * @return bitmap */ public static Bitmap createCornerBitmap(Bitmap bitmap,int rx,int ry,boolean bl,int edge,int color) { Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Config.ARGB_8888); Canvas canvas = new Canvas(output);//创建画布 Paint paint = new Paint(); paint.setAntiAlias(true); Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight()); RectF rectF = new RectF(rect); canvas.drawRoundRect(rectF, rx, ry, paint);//绘制圆角矩形 paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));//取相交裁剪 canvas.drawBitmap(bitmap, rect, rect, paint); if(bl) { if (color == 0) color = 0xFFFEA248;//默认橘黄色 paint.setColor(color); paint.setColor(color); paint.setStyle(Paint.Style.STROKE);//描边 paint.setStrokeWidth(edge); canvas.drawRoundRect(rectF, rx, ry, paint); } return output; } /** * 按比例裁剪图片 * @param bitmap 位图 * @param wScale 裁剪宽 0~100% * @param hScale 裁剪高 0~100% * @return bitmap */ public static Bitmap cropBitmap(Bitmap bitmap, float wScale, float hScale) { int w = bitmap.getWidth(); int h = bitmap.getHeight(); int wh = (int) (w * wScale); int hw = (int) (h * hScale); int retX = (int) (w * (1 - wScale) / 2); int retY = (int) (h * (1 - hScale) / 2); return Bitmap.createBitmap(bitmap, retX, retY, wh, hw, null, false); } /** * 获得带倒影的图片方法 * @param bitmap 位图 * @param region 倒影区域 0.1~1 * @return bitmap */ public static Bitmap createReflectionBitmap(Bitmap bitmap,float region) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); Matrix matrix = new Matrix(); matrix.preScale(1, -1);//镜像缩放 Bitmap reflectionBitmap = Bitmap.createBitmap( bitmap,0 , (int)(height*(1-region))//从哪个点开始绘制 , width ,(int) (height*region)//绘制多高 , matrix, false); Bitmap reflectionWithBitmap = Bitmap.createBitmap(width,height+ (int) (height*region), Config.ARGB_8888); Canvas canvas = new Canvas(reflectionWithBitmap); canvas.drawBitmap(bitmap, 0, 0, null); canvas.drawBitmap(reflectionBitmap, 0, height , null); LinearGradient shader = new LinearGradient(0, bitmap.getHeight(), 0, reflectionWithBitmap.getHeight() , 0x70ffffff, 0x00ffffff, TileMode.CLAMP); Paint paint = new Paint(); paint.setShader(shader); paint.setXfermode(new PorterDuffXfermode(Mode.DST_IN));//取两层绘制交集。显示下层。 canvas.drawRect(0, height, width, reflectionWithBitmap.getHeight() , paint); return reflectionWithBitmap; } /** * 图片质量压缩 * @param bitmap * @param many 百分比 * @return */ public static Bitmap compressBitmap(Bitmap bitmap, float many){ ByteArrayOutputStream baos = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.JPEG, (int)many*100, baos); ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray()); return BitmapFactory.decodeStream(isBm, null, null); } /** * 高级图片质量压缩 *@param bitmap 位图 * @param maxSize 压缩后的大小,单位kb */ public static Bitmap imageZoom(Bitmap bitmap, double maxSize) { // 将bitmap放至数组中,意在获得bitmap的大小(与实际读取的原文件要大) ByteArrayOutputStream baos = new ByteArrayOutputStream(); // 格式、质量、输出流 bitmap.compress(Bitmap.CompressFormat.PNG, 70, baos); byte[] b = baos.toByteArray(); // 将字节换成KB double mid = b.length / 1024; // 获取bitmap大小 是允许最大大小的多少倍 double i = mid / maxSize; // 判断bitmap占用空间是否大于允许最大空间 如果大于则压缩 小于则不压缩 doRecycledIfNot(bitmap); if (i > 1) { // 缩放图片 此处用到平方根 将宽带和高度压缩掉对应的平方根倍 // (保持宽高不变,缩放后也达到了最大占用空间的大小) return scaleWithWH(bitmap,bitmap.getWidth() / Math.sqrt(i), bitmap.getHeight() / Math.sqrt(i)); } return null; } /*** * 图片缩放 *@param bitmap 位图 * @param w 新的宽度 * @param h 新的高度 * @return Bitmap */ public static Bitmap scaleWithWH(Bitmap bitmap, double w, double h) { if (w == 0 || h == 0 || bitmap == null) { return bitmap; } else { int width = bitmap.getWidth(); int height = bitmap.getHeight(); Matrix matrix = new Matrix(); float scaleWidth = (float) (w / width); float scaleHeight = (float) (h / height); matrix.postScale(scaleWidth, scaleHeight); return Bitmap.createBitmap(bitmap, 0, 0, width, height, matrix, true); } } /** * YUV视频流格式转bitmap * @param data YUV视频流格式 * @return width 设置宽度 * @return width 设置高度 */ public static Bitmap getBitmap(byte[] data, int width, int height) { Bitmap bitmap; YuvImage yuvimage = new YuvImage(data, ImageFormat.NV21, width, height, null); //data是onPreviewFrame参数提供 ByteArrayOutputStream baos = new ByteArrayOutputStream(); yuvimage.compressToJpeg(new Rect(0, 0, yuvimage.getWidth(), yuvimage.getHeight()), 100, baos);// // 80--JPG图片的质量[0-100],100最高 byte[] rawImage = baos.toByteArray(); BitmapFactory.Options options = new BitmapFactory.Options(); SoftReference<Bitmap> softRef = new SoftReference<Bitmap>(BitmapFactory.decodeByteArray(rawImage, 0, rawImage .length, options)); bitmap = softRef.get(); return bitmap; } /** * 图片资源文件转bitmap * @param file 图片的绝对路径 * @return bitmap */ public static Bitmap getBitmapResources(Context context,int resId){ return BitmapFactory.decodeResource(context.getResources(),resId); } /** * 将图片路径转Bitmap * @Param path 图片路径 * @return Bitmap */ public static Bitmap getBitmapPath(String path){ return BitmapFactory.decodeFile(path); } /** * bitmap保存到指定路径 * @param file 图片的绝对路径 * @param file 位图 * @return bitmap */ public static boolean saveFile(String file, Bitmap bmp) { if(TextUtils.isEmpty(file) || bmp == null) return false; File f = new File(file); if (f.exists()) { f.delete(); }else { File p = f.getParentFile(); if(!p.exists()) { p.mkdirs(); } } try { FileOutputStream out = new FileOutputStream(f); bmp.compress(Bitmap.CompressFormat.JPEG, 100, out); out.flush(); out.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); return false; } return true; } /** * 回收一个未被回收的Bitmap *@param bitmap */ public static void doRecycledIfNot(Bitmap bitmap) { if (!bitmap.isRecycled()) { bitmap.recycle(); } } /** * 将图片转换成Base64编码的字符串 */ public static String imageToBase64(String path){ if(TextUtils.isEmpty(path)){ return null; } InputStream is = null; byte[] data = null; String result = null; try{ is = new FileInputStream(path); //创建一个字符流大小的数组。 data = new byte[is.available()]; //写入数组 is.read(data); //用默认的编码格式进行编码 result = Base64.encodeToString(data,Base64.DEFAULT); }catch (Exception e){ e.printStackTrace(); }finally { if(null !=is){ try { is.close(); } catch (IOException e) { e.printStackTrace(); } } } return result; }}
修改图片的颜色
private Bitmap createRGBImage(Bitmap bitmap,int type) { int bitmap_w = bitmap.getWidth(); int bitmap_h = bitmap.getHeight(); int[] arrayColor = new int[bitmap_w * bitmap_h]; int count = 0; int color; for (int i = 0; i < bitmap_h; i++) { for (int j = 0; j < bitmap_w; j++) { color = bitmap.getPixel(j, i); if (color == -131073) {//颜色十进制值 arrayColor[count] = Color.TRANSPARENT; }else{ arrayColor[count] = color; } count++; } } bitmap = Bitmap.createBitmap(arrayColor, bitmap_w, bitmap_h, Bitmap.Config.ARGB_8888); return bitmap; }
相关推荐
Bitmap工具类是Android开发中非常关键的一个部分,主要用于处理图像数据,尤其是在内存管理上起着至关重要的作用。在Android系统中,Bitmap对象是用于存储像素数据的,它消耗大量的内存,如果处理不当,很容易引发...
本篇文章将详细探讨`Android bitmap工具类`,特别是如何将Bitmap转换为String格式,以及这种转换在联网操作中的应用。 首先,我们来看Bitmap到String的转换过程。这个转换在Android中通常通过Bitmap的compress方法...
一个基于android平台Bitmap 工具类,一个基于android平台Bitmap 工具类,一个基于android平台Bitmap 工具类,一个基于android平台Bitmap 工具类,一个基于android平台Bitmap 工具类,一个基于android平台Bitmap 工具...
自己使用的最简易的,获取圆形图片工具类方法,里面方法较为简陋,主要用于对图片进行二次采样,切圆,便于开发者获取圆形图片
"Android bitmap图片压缩工具类"就是针对这一需求设计的一个实用工具,它能够有效地减小图片的大小,同时满足基本的显示要求。 BitmapCompressUtils这个类通常包含了一系列静态方法,用于对Bitmap进行不同类型的...
本资源包括常用工具类,目前收录了数组工具类、异步工具类、base64工具类、bitmap工具类、缓存工具类、时间工具类、http连接、json、IO、Map、MD5、数据库、SD卡、UbbToHtml等工具类合集
Bitmap 工具类主要包括获取 Bitmap 和对 Bitmap 的操作 CipherUtils 加密与解密的工具类 Colors 常用颜色色值工具类 CommonUtil 一些通用的方法 ChannelUtil 为打包而生的渠道工具类 极速打包传送门 ...
"Bitmap图片处理工具类" 提供了多种对位图(Bitmap)进行操作的功能,如颜色转换、图像分割、缩放、旋转、调整透明度、生成圆角图片以及文字与倒影效果的绘制。接下来,我们将深入探讨这些知识点。 首先,`...
本资源包括常用工具类,目前收录了数组工具类、异步工具类、base64工具类、bitmap工具类、缓存工具类、时间工具类、http连接、json、IO、Map、MD5、数据库、SD卡、UbbToHtml等工具类合集
在实现这些转换时,为了提高代码的复用性和效率,可以使用单例模式来创建一个工具类,如提供的`FormatTools.java`。单例模式确保了类只有一个实例,减少了资源消耗,同时提供了一个全局访问点,方便在应用中调用这些...
本篇文章将深入探讨如何利用C#的Bitmap类创建一个切图工具,以及该工具可能实现的功能。 首先,`C# Bitmap 切图工具`的主要功能是让用户能够对图像进行裁剪,以便于生成多个切片或缩略图。在设计这样的工具时,我们...
AnimationUtils 动画工具类 AppUtils APP相关信息工具类 AssetDatabaseOpenHelper 目录资源获取 Base64 加密 BitmapUtil 获取Bitmap和对Bitmap的操作 ChannelUtil 获取市场号 Colors 颜色工具类 包括常用的色值 DES ...
此外,这份资料可能还包含其他类型的工具类,如Bitmap处理工具类,用于图片的加载、缩放和优化;Date工具类,用于日期和时间的格式化和转换;Dialog工具类,提供自定义对话框的快速创建;还有可能包括Utils类,其中...
总结来说,`Bitmap`类和`PictureBox`控件是C#中处理和显示图像的重要工具。通过熟练掌握这两个组件,开发者能够实现从显示静态图像到进行复杂的图像处理和编辑功能。在实际项目中,还可以结合其他图形库和算法来扩展...
Android开发之常用必备工具类图片bitmap转成字符串string与String字符串转换为bitmap图片格式 博文介绍:http://blog.csdn.net/qq_21376985/article/details/52083611
在Java Android开发中,工具类(Utils类)是开发者经常使用的辅助代码集合,它们封装了一些通用功能,方便在多个类中复用,提高代码的可维护性和可读性。以下是一些常见的Java Android工具类及其包含的知识点: 1. ...
在Android开发过程中,工具类(Util Classes)是程序员经常使用的代码模块,它们包含了各种实用功能,可以帮助开发者更高效地编写代码。"android工具类"这个主题涵盖了从UI操作到网络请求,再到数据处理等多个方面的...
安卓的图片工具类,可处理Bitmap和ImageView对象,实现了以下功能: 1.saveBitmap: 把Bitmap对象持久存储到SD卡或手机内存. 2.getViewBitmap: 从view得到bitmap对象 3.addWatermark: Bitmap加水印 4.zoomBitmap: 放大...
6. **图片处理**:Android图片加载和处理是性能敏感的部分,工具类可能提供如`compressImage()`、`resizeBitmap()`等方法,帮助优化图片资源,避免内存溢出。 7. **权限管理**:随着Android系统的权限管理越来越...
"图片处理工具类"就是为了解决这些问题而设计的,它集成了多种常用的图片操作功能,如图片压缩、格式转换和尺寸调整等。下面将详细阐述这些知识点。 1. **图片压缩**: 在Android中,图片压缩主要目的是减小图片的...