android 图片去色,android图片圆角、图片去色处理示例「建议收藏」

android 图片去色,android图片圆角、图片去色处理示例「建议收藏」packagecom.zhanggeng.contact.tools;importjava.io.ByteArrayOutputStream;importjava.io.File;importjava.io.FileNotFoundException;importjava.io.FileOutputStream;importjava.io.IOException;importandr…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE稳定放心使用

package com.zhanggeng.contact.tools;

import java.io.ByteArrayOutputStream;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import android.graphics.Bitmap;

import android.graphics.Bitmap.Config;

import android.graphics.BitmapFactory;

import android.graphics.Canvas;

import android.graphics.ColorMatrix;

import android.graphics.ColorMatrixColorFilter;

import android.graphics.Paint;

import android.graphics.PorterDuff.Mode;

import android.graphics.PorterDuffXfermode;

import android.graphics.Rect;

import android.graphics.RectF;

import android.graphics.drawable.BitmapDrawable;

import android.view.ViewGroup;

import android.view.animation.AccelerateInterpolator;

/**

* 处理图片的工具类.

*

*/

public class ImageTools {

/** */

/**

* 图片去色,返回灰度图片

*

* @param bmpOriginal

*            传入的图片

* @return 去色后的图片

*/

public static Bitmap toGrayscale(Bitmap bmpOriginal) {

int width, height;

height = bmpOriginal.getHeight();

width = bmpOriginal.getWidth();

Bitmap bmpGrayscale = Bitmap.createBitmap(width, height,

Bitmap.Config.RGB_565);

Canvas c = new Canvas(bmpGrayscale);

Paint paint = new Paint();

ColorMatrix cm = new ColorMatrix();

cm.setSaturation(0);

ColorMatrixColorFilter f = new ColorMatrixColorFilter(cm);

paint.setColorFilter(f);

c.drawBitmap(bmpOriginal, 0, 0, paint);

return bmpGrayscale;

}

/** */

/**

* 去色同时加圆角

*

* @param bmpOriginal

*            原图

* @param pixels

*            圆角弧度

* @return 修改后的图片

*/

public static Bitmap toGrayscale(Bitmap bmpOriginal, int pixels) {

return toRoundCorner(toGrayscale(bmpOriginal), pixels);

}

/** */

/**

* 把图片变成圆角

*

* @param bitmap

*            需要修改的图片

* @param pixels

*            圆角的弧度

* @return 圆角图片

*/

public static Bitmap toRoundCorner(Bitmap bitmap, int pixels) {

Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),

bitmap.getHeight(), Config.ARGB_8888);

Canvas canvas = new Canvas(output);

final int color = 0xff424242;

final Paint paint = new Paint();

final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());

final RectF rectF = new RectF(rect);

final float roundPx = pixels;

paint.setAntiAlias(true);

canvas.drawARGB(0, 0, 0, 0);

paint.setColor(color);

canvas.drawRoundRect(rectF, roundPx, roundPx, paint);

paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));

canvas.drawBitmap(bitmap, rect, rect, paint);

return output;

}

/** */

/**

* 使圆角功能支持BitampDrawable

*

* @param bitmapDrawable

* @param pixels

* @return

*/

public static BitmapDrawable toRoundCorner(BitmapDrawable bitmapDrawable,

int pixels) {

Bitmap bitmap = bitmapDrawable.getBitmap();

bitmapDrawable = new BitmapDrawable(toRoundCorner(bitmap, pixels));

return bitmapDrawable;

}

/**

* 读取路径中的图片,然后将其转化为缩放后的bitmap

*

* @param path

*/

public static void saveBefore(String path) {

BitmapFactory.Options options = new BitmapFactory.Options();

options.inJustDecodeBounds = true;

// 获取这个图片的宽和高

Bitmap bitmap = BitmapFactory.decodeFile(path, options); // 此时返回bm为空

options.inJustDecodeBounds = false;

// 计算缩放比

int be = (int) (options.outHeight / (float) 200);

if (be <= 0)

be = 1;

options.inSampleSize = 2; // 图片长宽各缩小二分之一

// 重新读入图片,注意这次要把options.inJustDecodeBounds 设为 false哦

bitmap = BitmapFactory.decodeFile(path, options);

int w = bitmap.getWidth();

int h = bitmap.getHeight();

System.out.println(w + ”   ” + h);

// savePNG_After(bitmap,path);

saveJPGE_After(bitmap, path);

}

/**

* 保存图片为PNG

*

* @param bitmap

* @param name

*/

public static void savePNG_After(Bitmap bitmap, String name) {

File file = new File(name);

try {

FileOutputStream out = new FileOutputStream(file);

if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, out)) {

out.flush();

out.close();

}

} catch (FileNotFoundException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

}

/**

* 保存图片为JPEG

*

* @param bitmap

* @param path

*/

public static void saveJPGE_After(Bitmap bitmap, String path) {

File file = new File(path);

try {

FileOutputStream out = new FileOutputStream(file);

if (bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out)) {

out.flush();

out.close();

}

} catch (FileNotFoundException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

}

/**

* 图片合成

*

* @param bitmap

* @return

*/

private Bitmap createBitmap(Bitmap src, Bitmap watermark) {

if (src == null) {

return null;

}

int w = src.getWidth();

int h = src.getHeight();

int ww = watermark.getWidth();

int wh = watermark.getHeight();

// create the new blank bitmap

Bitmap newb = Bitmap.createBitmap(w, h, Config.ARGB_8888);// 创建一个新的和SRC长度宽度一样的位图

Canvas cv = new Canvas(newb);

// draw src into

cv.drawBitmap(src, 0, 0, null);// 在 0,0坐标开始画入src

// draw watermark into

cv.drawBitmap(watermark, w – ww + 5, h – wh + 5, null);// 在src的右下角画入水印

// save all clip

cv.save(Canvas.ALL_SAVE_FLAG);// 保存

// store

cv.restore();// 存储

return newb;

}

// 将图片转换成byte[]以便能将其存到数据库

public static byte[] getByteFromBitmap(Bitmap bitmap) {

ByteArrayOutputStream out = new ByteArrayOutputStream();

bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);

try {

out.flush();

out.close();

} catch (IOException e) {

e.printStackTrace();

// Log.e(TAG, “transform byte exception”);

}

return out.toByteArray();

}

// 得到存储在数据库中的图片

// eg imageView.setImageBitmap(bitmapobj);

public static Bitmap getBitmapFromByte(byte[] temp) {

if (temp != null) {

Bitmap bitmap = BitmapFactory.decodeByteArray(temp, 0, temp.length);

return bitmap;

} else {

// Bitmap bitmap=BitmapFactory.decodeResource(getResources(),

// R.drawable.contact_add_icon);

return null;

}

}

//将手机中的文件转换为Bitmap类型

public static Bitmap getBitemapFromFile(File f) {

if (!f.exists())

return null;

try {

return BitmapFactory.decodeFile(f.getAbsolutePath());

} catch (Exception ex) {

return null;

}

}

//将手机中的文件转换为Bitmap类型(重载+1)

public static Bitmap getBitemapFromFile(String fileName) {

try {

return BitmapFactory.decodeFile(fileName);

} catch (Exception ex) {

return null;

}

}

}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/185553.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • Django外键(ForeignKey)操作以及related_name的作用

    Django外键(ForeignKey)操作以及related_name的作用之前已经写过一篇关于Django外键的文章,但是当时并没有介绍如何根据外键对数据的操作,也就是如何通过主表查询子表或者通过子表查询主表的信息  首先我定义了两个模型,一个是老师模型,一个是学生模型,一个老师对应多个学生,这个算是一个一对多的类型(如下图所示)      那么如果我们要想查询一个老师对应的学生有哪些,该如何操作呢?   首先我们先查询到老师的信息,在这里我们使用pyt

  • Batchnorm原理详解「建议收藏」

    Batchnorm原理详解「建议收藏」Batchnorm原理详解前言:Batchnorm是深度网络中经常用到的加速神经网络训练,加速收敛速度及稳定性的算法,可以说是目前深度网络必不可少的一部分。本文旨在用通俗易懂的语言,对深度学习的常用算法–batchnorm的原理及其代码实现做一个详细的解读。本文主要包括以下几个部分。Batchnorm主要解决的问题 Batchnorm原理解读 Batchnorm的优点 Batc…

  • 求一个手机淘宝直播中抢购的脚本,急「建议收藏」

    求一个手机淘宝直播中抢购的脚本,急「建议收藏」要求,手机淘宝直播中不管上架什么东西,我都是第一个购买成功的!天灵灵地灵灵,太上老君急急如律令,大神来>o<

  • minhash算法_小k

    minhash算法_小k对于web网页去重的应用,如抄袭、镜像等,通过将网页表示为字符k-grams(或者k-shingles)的集合,把网页去重的问题转化为找到这些集合的交集。使用传统的方法存储这些巨大的集合以及计算它们之间的相似性显然是不够的,为此,对集合按某种方式进行压缩,利用压缩后的集合推断原来集合的相似性。 Jaccard相似性:只关注集合之间的交集大小。集合S和T的Jaccard相似性定义如下:

    2022年10月30日
  • 线程创建的四种方式

    线程创建的四种方式java中创建线程的四种方法以及区别Java使用Thread类代表线程,所有的线程对象都必须是Thread类或其子类的实例。Java可以用四种方式来创建线程,如下所示:1)继承Thread类创建线程2)实现Runnable接口创建线程3)使用Callable和Future创建线程4)使用线程池例如用Executor框架下面让我们分别来看看这四种创建线程的方法。–…

  • dedecms 封面模板和列表模板有什么不同

    dedecms 封面模板和列表模板有什么不同

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号