package com.util;
import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.geom.AffineTransform;
import java.awt.image.AffineTransformOp;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public final class ImageUtils {
/**
* 图片水印
* @param pressImg 水印图片
* @param targetImg 目标图片
* @param x 修正值 默认在中间
* @param y 修正值 默认在中间
* @param alpha 透明度
* @param waterPos 水印位置,有10种状态,0为指定位置;
* 1为顶端居左,2为顶端居中,3为顶端居右;
* 4为中部居左,5为中部居中,6为中部居右;
* 7为底端居左,8为底端居中,9为底端居右;
*/
public final static void pressImage(String pressImg, String targetImg, int x, int y, float alpha,int waterPos) {
try {
File img = new File(targetImg);
Image src = ImageIO.read(img);
int width = src.getWidth(null);
int height = src.getHeight(null);
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
Graphics2D g = image.createGraphics();
g.drawImage(src, 0, 0, width, height, null);
//水印文件
Image src_biao = ImageIO.read(new File(pressImg));
int width_biao = src_biao.getWidth(null);
int height_biao = src_biao.getHeight(null);
int pos[] = setWaterPos(width,height,width_biao,height_biao,x,y,waterPos);
g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha));
g.drawImage(src_biao, pos[0], pos[1], width_biao, height_biao, null);
//水印文件结束
g.dispose();
ImageIO.write((BufferedImage) image, "jpg", img);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 文字水印
* @param pressText 水印文字
* @param targetImg 目标图片
* @param fontName 字体名称
* @param fontStyle 字体样式
* @param color 字体颜色
* @param fontSize 字体大小
* @param x 修正值
* @param y 正值
* @param alpha 透明度
*/
public static void pressText(String pressText, String targetImg, String fontName, int fontStyle, Color color, int fontSize, int x, int y, float alpha,int waterPos) {
try {
File img = new File(targetImg);
Image src = ImageIO.read(img);
int width = src.getWidth(null);
int height = src.getHeight(null);
BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
Graphics2D g = image.createGraphics();
g.drawImage(src, 0, 0, width, height, null);
g.setColor(color);
g.setFont(new Font(fontName, fontStyle, fontSize));
g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha));
int pos[] = setWaterPos(width,height,getLength(pressText) * fontSize,fontSize,x,y,waterPos);
// g.drawString(pressText, (width - (getLength(pressText) * fontSize)) / 2 + x, (height - fontSize) / 2 + y);
g.drawString(pressText, pos[0], pos[1]+fontSize);
g.dispose();
ImageIO.write((BufferedImage) image, "jpg", img);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 缩放
* @param filePath 图片路径
* @param height 高度
* @param width 宽度
* @param bb 比例不对时是否需要补白
*/
public static void resize(String filePath, int height, int width, boolean bb) {
try {
double ratio = 0.0; //缩放比例
File f = new File(filePath);
BufferedImage bi = ImageIO.read(f);
Image itemp = bi.getScaledInstance(width, height, bi.SCALE_SMOOTH);
//计算比例
if ((bi.getHeight() > height) || (bi.getWidth() > width)) {
if (bi.getHeight() > bi.getWidth()) {
ratio = (new Integer(height)).doubleValue() / bi.getHeight();
} else {
ratio = (new Integer(width)).doubleValue() / bi.getWidth();
}
AffineTransformOp op = new AffineTransformOp(AffineTransform.getScaleInstance(ratio, ratio), null);
itemp = op.filter(bi, null);
}
if (bb) {
BufferedImage image =
new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
Graphics2D g = image.createGraphics();
g.setColor(Color.white);
g.fillRect(0, 0, width, height);
if (width == itemp.getWidth(null))
g.drawImage(itemp, 0, (height - itemp.getHeight(null)) / 2, itemp.getWidth(null), itemp.getHeight(null), Color.white, null);
else
g.drawImage(itemp, (width - itemp.getWidth(null)) / 2, 0, itemp.getWidth(null), itemp.getHeight(null), Color.white, null);
g.dispose();
itemp = image;
}
ImageIO.write((BufferedImage) itemp, "jpg", f);
} catch (IOException e) {
e.printStackTrace();
}
}
public static int getLength(String text) {
int length = 0;
for (int i = 0; i < text.length(); i++) {
if (new String(text.charAt(i) + "").getBytes().length > 1) {
length += 2;
} else {
length += 1;
}
}
return length / 2;
}
private static int[] setWaterPos(int ground_w,int ground_h,int w_width,int w_height,int width,int height,int waterPos){
int pos[] = new int[2];
switch (waterPos) {
case 0: //0为指定位置
pos[0]=width;
pos[1]=height;
break;
case 1: //1为顶端居左
pos[0]=0;
pos[1]=0;
break;
case 2: //2为顶端居中
pos[0]=(ground_w - w_width) / 2;
pos[1]=0;
break;
case 3: //3为顶端居右
pos[0]=ground_w - w_width;
pos[1]=0;
break;
case 4: //4为中部居左
pos[0]=0;
pos[1]=(ground_h - w_height) / 2;
break; //5为中部居中
case 5:
pos[0]=(ground_w - w_width) / 2;
pos[1]=(ground_h - w_height) / 2;
break; //6为中部居右
case 6:
pos[0]=ground_w - w_width;
pos[1]=(ground_h - w_height) / 2;
break;
case 7: //7为底端居左
pos[0]=0;
pos[1]=ground_h - w_height;
break;
case 8: //8为底端居中
pos[0]=(ground_w - w_width) / 2;
pos[1]=ground_h - w_height;
break;
case 9: //9为底端居右
pos[0]=ground_w - w_width;
pos[1]=ground_h - w_height;
break;
default: //指定位置
pos[0]=width;
pos[1]=height;
break;
}
return pos;
}
public static void main(String[] args) throws IOException {
pressImage("D:\\attach\\logo.jpg", "D:\\attach\\dly_ems.jpg", 0, 0, 0.5f,9);
pressText("我是文字水印", "D:\\attach\\dly_ems.jpg", "黑体", 36, Color.BLUE, 25, 0, 0, 0.8f,1);
resize("D:\\attach\\thumbnail.jpg", 500, 500, true);
}
}
分享到:
相关推荐
第二种是添加图片水印和文字水印两种方法,水印图片可以是GIF,PNG透明的文件,我一般采用的是PNG的,因为它的质量和GIF相比要高一些; 适用人群:Java开发者 使用场景:版权信息标注 目标:可以直接拿来用
在这个实例中,我们将探讨如何在Java中实现文字水印、图片水印、图像缩放以及补白功能。以下是一些关键知识点: 1. **Java AWT 和 Swing 图形库**: Java中的`java.awt`和`javax.swing`包提供了丰富的图形用户界面...
在Java编程语言中,处理...综上所述,这段代码展示了Java如何利用AWT库进行图片处理,包括添加图片和文字水印,以及处理透明度和定位。这些都是Java图形处理的基本技术,对于开发涉及图像编辑和处理的应用非常有用。
将图片自动缩放成指定大小,减少图片体积,从而加快下载速度,降低下载时间和成本。URI 模式 http://localhost/images/pic.jpg_50x100.jpg http://localhost/images/pic.jpg_50x100m2.jpg ...
首先,关于PHP中的图片处理,一个重要的库是GD库。它提供了一系列处理图片的功能,包括创建图像、裁剪和缩放。在上述内容中,通过自定义的PHP类ImageCrop来实现图片的无变形裁剪和缩放操作。 接下来,我们详细分析...
2. **细节补白**:在教材中,插图和文字往往只展示了一部分信息,教师应引导学生关注并补充这些未明确的细节。例如,通过插图创设对话场景,让学生假设其他角色的行为和对话,这不仅能锻炼他们的想象力,也能加强...
3. 图像相关单词 * img:图片 * src:图片路径 * alt:说明 * height:高度 * width:宽度 4. 表单相关单词 * form:表单 * input:输入 * select:选择 * textarea:文本区域 * checkbox:复选框 * radio:单选...
05文件夹:图像与多媒体,包括28个例子。 06文件夹:页面的布局与分隔,包括11个例子。 07文件夹:列表,包括8个例子。 08文件夹:表单,包括39个例子。 09文件夹:表格,包括39个例子。 10文件夹:框架...
CSS中的`padding`属性是网页布局中不可或缺的一部分,它用于设置元素内容区域与边框之间的距离,也就是我们所说的边内补白。边内补白的存在可以让元素内容与边框之间保持一定的空间,增加视觉效果或者调整元素内部的...
知识点:文字过长的处理、省略号的使用 十八、在 IE 中可能由于注释带来的文字重复问题时可以把注释改为:<!–[if !IE]>Put your commentary in here…<![endif]–> 知识点:注释的使用、IE 的特殊性 十九、...
5. 补白处理:为了保持视觉上的平衡,算法会在图片之间添加适当的间距。这些间距可以是固定的,也可以根据图片大小动态调整。 6. 最后优化:在所有图片分配完成后,可能需要进行微调,例如,调整最后一行的图片排列...
CSS中的`margin`属性是一个非常重要的布局工具,用于设置元素周围的空间,也就是边外补白。边外补白不显示任何颜色或样式,因为它本质上是透明的,但它的作用是控制元素之间的距离,使得网页布局更加灵活和美观。 ...
- **内容**:指网页上的文字、图像等实质信息。 - **结构**:使用HTML等标记语言来构建网页的基本框架。 - **表现**:通过CSS来控制网页的视觉样式和布局。 #### 两种思考方式 - **面向文档**:以文档结构为基础...
在“补白”教学法中,数据分析可以帮助教师识别哪些环节需要留白,以及留白后学生如何更好地理解和创造。 【数据研究】 数据研究是基于大量数据的探索性分析,旨在发现隐藏的模式、趋势或关联。在教育中的数据研究...