感知哈希算法 java_感知哈希算法的java实现

importjava.awt.AlphaComposite;importjava.awt.Color;importjava.awt.Font;importjava.awt.Graphics2D;importjava.awt.Image;importjava.awt.RenderingHints;importjava.awt.geom.AffineTransform;importjava.awt.image.BufferedImage;importjava.awt.image.ColorModel;importjava.awt.image.WritableRaster;importjava.io.File;importjava.io.FileInputStream;importjava.io.FileNotFoundException;importjava.io.FileOutputStream;importjava.io.IOException;importjava.io.InputStream;importjavax.imageio.ImageIO;importcom.sun.image.codec.jpeg.ImageFormatException;importcom.sun.image.codec.jpeg.JPEGCodec;importcom.sun.image.codec.jpeg.JPEGImageDecoder;importcom.sun.image.codec.jpeg.JPEGImageEncoder;public classImageHelper {//项目根目录路径

public static final String path = System.getProperty("user.dir");/*** 生成缩略图

* 保存:ImageIO.write(BufferedImage, imgType[jpg/png/...], File);

*

*@paramsource

* 原图片

*@paramwidth

* 缩略图宽

*@paramheight

* 缩略图高

*@paramb

* 是否等比缩放

**/

public static BufferedImage thumb(BufferedImage source, intwidth,int height, booleanb) {//targetW,targetH分别表示目标长和宽

int type =source.getType();

BufferedImage target= null;double sx = (double) width /source.getWidth();double sy = (double) height /source.getHeight();if(b) {if (sx >sy) {

sx=sy;

width= (int) (sx *source.getWidth());

}else{

sy=sx;

height= (int) (sy *source.getHeight());

}

}if (type == BufferedImage.TYPE_CUSTOM) { //handmade

ColorModel cm =source.getColorModel();

WritableRaster raster=cm.createCompatibleWritableRaster(width,

height);boolean alphaPremultiplied =cm.isAlphaPremultiplied();

target= new BufferedImage(cm, raster, alphaPremultiplied, null);

}elsetarget= newBufferedImage(width, height, type);

Graphics2D g=target.createGraphics();//smoother than exlax:

g.setRenderingHint(RenderingHints.KEY_RENDERING,

RenderingHints.VALUE_RENDER_QUALITY);

g.drawRenderedImage(source, AffineTransform.getScaleInstance(sx, sy));

g.dispose();returntarget;

}/*** 图片水印

*

*@paramimgPath

* 待处理图片

*@parammarkPath

* 水印图片

*@paramx

* 水印位于图片左上角的 x 坐标值

*@paramy

* 水印位于图片左上角的 y 坐标值

*@paramalpha

* 水印透明度 0.1f ~ 1.0f

**/

public static void waterMark(String imgPath, String markPath, int x, inty,floatalpha) {try{//加载待处理图片文件

Image img = ImageIO.read(newFile(imgPath));

BufferedImage image= new BufferedImage(img.getWidth(null),

img.getHeight(null), BufferedImage.TYPE_INT_RGB);

Graphics2D g=image.createGraphics();

g.drawImage(img,0, 0, null);//加载水印图片文件

Image src_biao = ImageIO.read(newFile(markPath));

g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP,

alpha));

g.drawImage(src_biao, x, y,null);

g.dispose();//保存处理后的文件

FileOutputStream out = newFileOutputStream(imgPath);

JPEGImageEncoder encoder=JPEGCodec.createJPEGEncoder(out);

encoder.encode(image);

out.close();

}catch(Exception e) {

e.printStackTrace();

}

}/*** 文字水印

*

*@paramimgPath

* 待处理图片

*@paramtext

* 水印文字

*@paramfont

* 水印字体信息

*@paramcolor

* 水印字体颜色

*@paramx

* 水印位于图片左上角的 x 坐标值

*@paramy

* 水印位于图片左上角的 y 坐标值

*@paramalpha

* 水印透明度 0.1f ~ 1.0f*/

public static voidtextMark(String imgPath, String text, Font font,

Color color,int x, int y, floatalpha) {try{

Font Dfont= (font == null) ? new Font("宋体", 20, 13) : font;

Image img= ImageIO.read(newFile(imgPath));

BufferedImage image= new BufferedImage(img.getWidth(null),

img.getHeight(null), BufferedImage.TYPE_INT_RGB);

Graphics2D g=image.createGraphics();

g.drawImage(img,0, 0, null);

g.setColor(color);

g.setFont(Dfont);

g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP,

alpha));

g.drawString(text, x, y);

g.dispose();

FileOutputStream out= newFileOutputStream(imgPath);

JPEGImageEncoder encoder=JPEGCodec.createJPEGEncoder(out);

encoder.encode(image);

out.close();

}catch(Exception e) {

System.out.println(e);

}

}/*** 读取JPEG图片

*@paramfilename 文件名

*@returnBufferedImage 图片对象*/

public staticBufferedImage readJPEGImage(String filename)

{try{

InputStream imageIn= new FileInputStream(newFile(filename));//得到输入的编码器,将文件流进行jpg格式编码

JPEGImageDecoder decoder =JPEGCodec.createJPEGDecoder(imageIn);//得到编码后的图片对象

BufferedImage sourceImage =decoder.decodeAsBufferedImage();returnsourceImage;

}catch(FileNotFoundException e) {

e.printStackTrace();

}catch(ImageFormatException e) {

e.printStackTrace();

}catch(IOException e) {

e.printStackTrace();

}return null;

}/*** 读取JPEG图片

*@paramfilename 文件名

*@returnBufferedImage 图片对象*/

public staticBufferedImage readPNGImage(String filename)

{try{

File inputFile= newFile(filename);

BufferedImage sourceImage=ImageIO.read(inputFile);returnsourceImage;

}catch(FileNotFoundException e) {

e.printStackTrace();

}catch(ImageFormatException e) {

e.printStackTrace();

}catch(IOException e) {

e.printStackTrace();

}return null;

}/*** 灰度值计算

*@parampixels 像素

*@returnint 灰度值*/

public static int rgbToGray(intpixels) {//int _alpha = (pixels >> 24) & 0xFF;

int _red = (pixels >> 16) & 0xFF;int _green = (pixels >> 8) & 0xFF;int _blue = (pixels) & 0xFF;return (int) (0.3 * _red + 0.59 * _green + 0.11 *_blue);

}/*** 计算数组的平均值

*@parampixels 数组

*@returnint 平均值*/

public static int average(int[] pixels) {float m = 0;for (int i = 0; i < pixels.length; ++i) {

m+=pixels[i];

}

m= m /pixels.length;return (int) m;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值