Android 图片处理方法大全

简介:

整理了一下目前Android开发中图片的各种处理方法:

 

 
  1. Java代码  
  2.       
  3.    /**       
  4.      * 使头像变灰       
  5.      * @param drawable       
  6.      */        
  7.     public static void porBecomeGrey(ImageView imageView, Drawable drawable) {        
  8.         drawable.mutate();            
  9.         ColorMatrix cm = new ColorMatrix();            
  10.         cm.setSaturation(0);            
  11.         ColorMatrixColorFilter cf = new ColorMatrixColorFilter(cm);            
  12.         drawable.setColorFilter(cf);         
  13.         imageView.setImageDrawable(drawable);        
  14.     }    

 

 
  1. Java 代码复制内容到剪贴板  
  2.       
  3. Drawable drawable = new FastBitmapDrawable(bitmap);      

 

 
  1. Java 代码复制内容到剪贴板  
  2.       
  3. public byte[] getBitmapByte(Bitmap bitmap){          
  4.     ByteArrayOutputStream out = new ByteArrayOutputStream();          
  5.     bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);          
  6.     try {          
  7.         out.flush();          
  8.         out.close();          
  9.     } catch (IOException e) {          
  10.         e.printStackTrace();          
  11.     }          
  12.     return out.toByteArray();          
  13. }          
  14.           
  15.           
  16. public Bitmap getBitmapFromByte(byte[] temp){          
  17.     if(temp != null){          
  18.         Bitmap bitmap = BitmapFactory.decodeByteArray(temp, 0, temp.length);          
  19.         return bitmap;          
  20.     }else{          
  21.         return null;          
  22.     }          
  23. }      

 

 
  1. Java 代码复制内容到剪贴板  
  2.       
  3. /**       
  4.      * 将Drawable转化为Bitmap       
  5.      * @param drawable       
  6.      * @return       
  7.      */        
  8.     public static Bitmap drawableToBitmap(Drawable drawable) {        
  9.         int width = drawable.getIntrinsicWidth();        
  10.         int height = drawable.getIntrinsicHeight();        
  11.         Bitmap bitmap = Bitmap.createBitmap(width, height, drawable        
  12.                 .getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888        
  13.                 : Bitmap.Config.RGB_565);        
  14.         Canvas canvas = new Canvas(bitmap);        
  15.         drawable.setBounds(00, width, height);        
  16.         drawable.draw(canvas);        
  17.         return bitmap;        
  18.     }    

 

 
  1. Java 代码复制内容到剪贴板  
  2.       
  3. /**       
  4.     * 获取图片的倒影       
  5.     * @param bitmap       
  6.     * @return       
  7.     */        
  8.     public static Bitmap createReflectionImageWithOrigin(Bitmap bitmap) {        
  9.         final int reflectionGap = 4;        
  10.         int width = bitmap.getWidth();        
  11.         int height = bitmap.getHeight();        
  12.         
  13.         Matrix matrix = new Matrix();        
  14.         matrix.preScale(1, -1);        
  15.         
  16.         Bitmap reflectionImage = Bitmap.createBitmap(bitmap, 0, height / 2,        
  17.                 width, height / 2, matrix, false);        
  18.         
  19.         Bitmap bitmapWithReflection = Bitmap.createBitmap(width,        
  20.                 (height + height / 2), Config.ARGB_8888);        
  21.         
  22.         Canvas canvas = new Canvas(bitmapWithReflection);        
  23.         canvas.drawBitmap(bitmap, 00null);        
  24.         Paint deafalutPaint = new Paint();        
  25.         canvas.drawRect(0, height, width, height + reflectionGap, deafalutPaint);        
  26.         
  27.         canvas.drawBitmap(reflectionImage, 0, height + reflectionGap, null);        
  28.         
  29.         Paint paint = new Paint();        
  30.         LinearGradient shader = new LinearGradient(0, bitmap.getHeight(), 0,        
  31.                 bitmapWithReflection.getHeight() + reflectionGap, 0x70ffffff,        
  32.                 0x00ffffff, TileMode.CLAMP);        
  33.         paint.setShader(shader);        
  34.         paint.setXfermode(new PorterDuffXfermode(Mode.DST_IN));        
  35.         canvas.drawRect(0, height, width, bitmapWithReflection.getHeight()        
  36.                 + reflectionGap, paint);        
  37.         return bitmapWithReflection;        
  38.     }    

 

 

 
  1. Java 代码复制内容到剪贴板  
  2.       
  3. /**       
  4.     * 把图片变成圆角         
  5.     * @param bitmap 需要修改的图片         
  6.     * @param pixels 圆角的弧度         
  7.     * @return 圆角图片         
  8.     */            
  9.    public static Bitmap toRoundCorner(Bitmap bitmap, int pixels) {            
  10.              
  11.        Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Config.ARGB_8888);            
  12.        Canvas canvas = new Canvas(output);            
  13.              
  14.        final int color = 0xff424242;            
  15.        final Paint paint = new Paint();            
  16.        final Rect rect = new Rect(00, bitmap.getWidth(), bitmap.getHeight());            
  17.        final RectF rectF = new RectF(rect);            
  18.        final float roundPx = pixels;            
  19.              
  20.        paint.setAntiAlias(true);            
  21.        canvas.drawARGB(0000);            
  22.        paint.setColor(color);            
  23.        canvas.drawRoundRect(rectF, roundPx, roundPx, paint);            
  24.              
  25.        paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));            
  26.        canvas.drawBitmap(bitmap, rect, rect, paint);            
  27.              
  28.        return output;            
  29.    }      

 

 
  1. Java 代码复制内容到剪贴板  
  2.       
  3. /**       
  4.      * 缩放图片       
  5.      * @param bmp       
  6.      * @param width       
  7.      * @param height       
  8.      * @return       
  9.      */        
  10.     public static Bitmap PicZoom(Bitmap bmp, int width, int height) {        
  11.         int bmpWidth = bmp.getWidth();        
  12.         int bmpHeght = bmp.getHeight();        
  13.         Matrix matrix = new Matrix();        
  14.         matrix.postScale((float) width / bmpWidth, (float) height / bmpHeght);        
  15.         
  16.         return Bitmap.createBitmap(bmp, 00, bmpWidth, bmpHeght, matrix, true);        
  17.     }    

 

 
  1. Java 代码复制内容到剪贴板  
  2.       
  3. /**       
  4.      * @param photoPath --原图路经       
  5.      * @param aFile     --保存缩图       
  6.      * @param newWidth  --缩图宽度       
  7.      * @param newHeight --缩图高度       
  8.      */        
  9.     public static boolean bitmapToFile(String photoPath, File aFile, int newWidth, int newHeight) {        
  10.         BitmapFactory.Options options = new BitmapFactory.Options();        
  11.         options.inJustDecodeBounds = true;        
  12.         // 获取这个图片的宽和高        
  13.         Bitmap bitmap = BitmapFactory.decodeFile(photoPath, options);        
  14.         options.inJustDecodeBounds = false;        
  15.          
  16.         //计算缩放比        
  17.         options.inSampleSize = reckonThumbnail(options.outWidth, options.outHeight, newWidth, newHeight);        
  18.         
  19.         bitmap = BitmapFactory.decodeFile(photoPath, options);        
  20.         
  21.         try {        
  22.             ByteArrayOutputStream baos = new ByteArrayOutputStream();        
  23.             bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);        
  24.             byte[] photoBytes = baos.toByteArray();        
  25.         
  26.             if (aFile.exists()) {        
  27.                 aFile.delete();        
  28.             }        
  29.             aFile.createNewFile();        
  30.         
  31.             FileOutputStream fos = new FileOutputStream(aFile);        
  32.             fos.write(photoBytes);        
  33.             fos.flush();        
  34.             fos.close();        
  35.         
  36.             return true;        
  37.         } catch (Exception e1) {        
  38.             e1.printStackTrace();        
  39.             if (aFile.exists()) {        
  40.                 aFile.delete();        
  41.             }        
  42.             Log.e("Bitmap To File Fail", e1.toString());        
  43.             return false;        
  44.         }        
  45.     }    

 

 
  1. Java 代码复制内容到剪贴板  
  2.       
  3. /**       
  4.      * 计算缩放比       
  5.      * @param oldWidth       
  6.      * @param oldHeight       
  7.      * @param newWidth       
  8.      * @param newHeight       
  9.      * @return       
  10.      */        
  11.     public static int reckonThumbnail(int oldWidth, int oldHeight, int newWidth, int newHeight) {        
  12.         if ((oldHeight > newHeight && oldWidth > newWidth)        
  13.                 || (oldHeight <= newHeight && oldWidth > newWidth)) {        
  14.             int be = (int) (oldWidth / (float) newWidth);        
  15.             if (be <= 1)        
  16.                 be = 1;        
  17.             return be;        
  18.         } else if (oldHeight > newHeight && oldWidth <= newWidth) {        
  19.             int be = (int) (oldHeight / (float) newHeight);        
  20.             if (be <= 1)        
  21.                 be = 1;        
  22.             return be;        
  23.         }        
  24.         
  25.         return 1;        
  26.     }    

Android边框圆角

 

 
  1. XML/HTML 代码复制内容到剪贴板  
  2.       
  3. <?xml version="1.0" encoding="utf-8"?>            
  4. <shape xmlns:android="http://schema...android">              
  5.     <solid android:color="#000000" />              
  6.     <corners android:topLeftRadius="10dp"             
  7.                     android:topRightRadius="10dp"              
  8.                 android:bottomRightRadius="10dp"             
  9.                 android:bottomLeftRadius="10dp"/>              
  10. </shape>      

解释:solid的表示填充颜色,为了简单,这里用的是黑色。

而corners则是表示圆角,注意的是这里bottomRightRadius是左下角而不是右下角,bottomLeftRadius右下角。 
当然上面的效果也可以像下面一样设置,如下: <corners android:radius="5dp" />  

 

源码下载:

如果有更多的功能和方法,请大家评论指出


     本文转自06peng 51CTO博客,原文链接:http://blog.51cto.com/06peng/962505,如需转载请自行联系原作者






目录
打赏
0
0
0
0
348
分享
相关文章
基于Android P,自定义Android开机动画的方法
本文详细介绍了基于Android P系统自定义开机动画的步骤,包括动画文件结构、脚本编写、ZIP打包方法以及如何将自定义动画集成到AOSP源码中。
174 2
基于Android P,自定义Android开机动画的方法
基于android-11.0.0_r39,系统应用的手动签名方法和过程
本文介绍了基于Android 11.0.0_r39版本进行系统应用手动签名的方法和解决签名过程中遇到的错误,包括处理`no conscrypt_openjdk_jni-linux-x86_64`和`RegisterNatives failed`的问题。
347 2
|
6月前
|
Android 系统缓存扫描与清理方法分析
Android 系统缓存从原理探索到实现。
164 15
Android 系统缓存扫描与清理方法分析
Android经典面试题之图片Bitmap怎么做优化
本文介绍了图片相关的内存优化方法,包括分辨率适配、图片压缩与缓存。文中详细讲解了如何根据不同分辨率放置图片资源,避免图片拉伸变形;并通过示例代码展示了使用`BitmapFactory.Options`进行图片压缩的具体步骤。此外,还介绍了Glide等第三方库如何利用LRU算法实现高效图片缓存。
107 20
Android经典面试题之图片Bitmap怎么做优化
Android经典面试题之组件化原理、优缺点、实现方法?
本文介绍了组件化在Android开发中的应用,详细阐述了其原理、优缺点及实现方式,包括模块化、接口编程、依赖注入、路由机制等内容,并提供了具体代码示例。
110 2
Android在rootdir根目录创建自定义目录和挂载点的方法
本文介绍了在Android高通平台的根目录下创建自定义目录和挂载点的方法,通过修改Android.mk文件并使用`LOCAL_POST_INSTALL_CMD`变量在编译过程中添加目录,最终在ramdisk.img的系统根路径下成功创建了`/factory/bin`目录。
380 1
AOSP源码下载方法,解决repo sync错误:android-13.0.0_r82
本文分享了下载AOSP源码的方法,包括如何使用repo工具和处理常见的repo sync错误,以及配置Python环境以确保顺利同步特定版本的AOSP代码。
1086 0
AOSP源码下载方法,解决repo sync错误:android-13.0.0_r82
Android平台RTMP推送|轻量级RTSP服务|GB28181接入之文字、png图片水印的精进之路
本文探讨了Android平台上推流模块中添加文字与PNG水印的技术演进。自2015年起,为了满足应急指挥及安防领域的需求,逐步发展出三代水印技术:第一代为静态文字与图像水印;第二代实现了动态更新水印内容的能力,例如实时位置与时间信息;至第三代,则优化了数据传输效率,直接使用Bitmap对象传递水印数据至JNI层,减少了内存拷贝次数。这些迭代不仅提升了用户体验和技术效率,也体现了开发者追求极致与不断创新的精神。
Android经典实战之如何获取图片的经纬度以及如何根据经纬度获取对应的地点名称
本文介绍如何在Android中从图片提取地理位置信息并转换为地址。首先利用`ExifInterface`获取图片内的经纬度,然后通过`Geocoder`将经纬度转为地址。注意操作需在子线程进行且考虑多语言支持。
426 4
Android项目架构设计问题之onFirstItemVisibleChanged方法的调用如何解决
Android项目架构设计问题之onFirstItemVisibleChanged方法的调用如何解决
59 0

热门文章

最新文章

AI助理

你好,我是AI助理

可以解答问题、推荐解决方案等