package com.hmw.picMark;
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;
/**
* 图片工具类, 图片水印,文字水印,缩放,补白等
* @author Carl He
*/
public final class ImageUtils {
/**图片格式:JPG*/
private static final String PICTRUE_FORMATE_JPG = "jpg";
private ImageUtils(){}
/**
* 添加图片水印
* @param targetImg 目标图片路径,如:C://myPictrue//1.jpg
* @param waterImg 水印图片路径,如:C://myPictrue//logo.png
* @param x 水印图片距离目标图片左侧的偏移量,如果x<0, 则在正中间
* @param y 水印图片距离目标图片上侧的偏移量,如果y<0, 则在正中间
* @param alpha 透明度(0.0 -- 1.0, 0.0为完全透明,1.0为完全不透明)
*/
public final static void pressImage(String targetImg, String waterImg, int x, int y, float alpha) {
try {
File file = new File(targetImg);
Image image = ImageIO.read(file);
int width = image.getWidth(null);
int height = image.getHeight(null);
BufferedImage bufferedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
Graphics2D g = bufferedImage.createGraphics();
g.drawImage(image, 0, 0, width, height, null);
Image waterImage = ImageIO.read(new File(waterImg)); // 水印文件
int width_1 = waterImage.getWidth(null);
int height_1 = waterImage.getHeight(null);
g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha));
int widthDiff = width - width_1;
int heightDiff = height - height_1;
if(x < 0){
x = widthDiff / 2;
}else if(x > widthDiff){
x = widthDiff;
}
if(y < 0){
y = heightDiff / 2;
}else if(y > heightDiff){
y = heightDiff;
}
g.drawImage(waterImage, x, y, width_1, height_1, null); // 水印文件结束
g.dispose();
ImageIO.write(bufferedImage, PICTRUE_FORMATE_JPG, file);
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 添加文字水印
* @param targetImg 目标图片路径,如:C://myPictrue//1.jpg
* @param pressText 水印文字, 如:中国证券网
* @param fontName 字体名称, 如:宋体
* @param fontStyle 字体样式,如:粗体和斜体(Font.BOLD|Font.ITALIC)
* @param fontSize 字体大小,单位为像素
* @param color 字体颜色
* @param x 水印文字距离目标图片左侧的偏移量,如果x<0, 则在正中间
* @param y 水印文字距离目标图片上侧的偏移量,如果y<0, 则在正中间
* @param alpha 透明度(0.0 -- 1.0, 0.0为完全透明,1.0为完全不透明)
*/
public static void pressText(String targetImg, String pressText, String fontName, int fontStyle, int fontSize, Color color, int x, int y, float alpha) {
try {
File file = new File(targetImg);
Image image = ImageIO.read(file);
int width = image.getWidth(null);
int height = image.getHeight(null);
BufferedImage bufferedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
Graphics2D g = bufferedImage.createGraphics();
g.drawImage(image, 0, 0, width, height, null);
g.setFont(new Font(fontName, fontStyle, fontSize));
g.setColor(color);
g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha));
int width_1 = fontSize * getLength(pressText);
int height_1 = fontSize;
int widthDiff = width - width_1;
int heightDiff = height - height_1;
if(x < 0){
x = widthDiff / 2;
}else if(x > widthDiff){
x = widthDiff;
}
if(y < 0){
y = heightDiff / 2;
}else if(y > heightDiff){
y = heightDiff;
}
g.drawString(pressText, x, y + height_1);
g.dispose();
ImageIO.write(bufferedImage, PICTRUE_FORMATE_JPG, file);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 获取字符长度,一个汉字作为 1 个字符, 一个英文字母作为 0.5 个字符
* @param text
* @return 字符长度,如:text="中国",返回 2;text="test",返回 2;text="中国ABC",返回 4.
*/
public static int getLength(String text) {
int textLength = text.length();
int length = textLength;
for (int i = 0; i < textLength; i++) {
if (String.valueOf(text.charAt(i)).getBytes().length > 1) {
length++;
}
}
return (length % 2 == 0) ? length / 2 : length / 2 + 1;
}
/**
* 图片缩放
* @param filePath 图片路径
* @param height 高度
* @param width 宽度
* @param bb 比例不对时是否需要补白
*/
public static void resize(String filePath, int height, int width, boolean bb) {
try {
double ratio = 0; //缩放比例
File f = new File(filePath);
BufferedImage bi = ImageIO.read(f);
Image itemp = bi.getScaledInstance(width, height, BufferedImage.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 void main(String[] args) throws IOException {
pressImage("C://pic//jpg", "C://pic//test.gif", 5000, 5000, 0f);
pressText("C://pic//jpg", "test", "宋体", Font.BOLD|Font.ITALIC, 20, Color.BLACK, 0, 0, 8f);
resize("C://pic//4.jpg", 1000, 500, true);
}
}
原文地址:http://www.cnblogs.com/XL-Liang/archive/2011/12/14/2287566.html
分享到:
相关推荐
第二种是添加图片水印和文字水印两种方法,水印图片可以是GIF,PNG透明的文件,我一般采用的是PNG的,因为它的质量和GIF相比要高一些; 适用人群:Java开发者 使用场景:版权信息标注 目标:可以直接拿来用
Java图片处理技术是Java开发中常见的一种需求,用于创建、编辑和操作图像。在这个实例中,我们将探讨如何在Java中实现文字水印、图片水印、图像缩放以及补白功能。以下是一些关键知识点: 1. **Java AWT 和 Swing ...
在Java编程语言中,处理...综上所述,这段代码展示了Java如何利用AWT库进行图片处理,包括添加图片和文字水印,以及处理透明度和定位。这些都是Java图形处理的基本技术,对于开发涉及图像编辑和处理的应用非常有用。
mode 4 : 只缩放,不裁剪,保留全部图片信息,此时的参数只是限制了生成的图片的最大宽高,不产生补白。 mode 5 : 生成的图比例严格按照需要的比例,宽和高不超过给定的参数。 服务器环境要求 PHP 5.2 ...
2. **细节补白**:在教材中,插图和文字往往只展示了一部分信息,教师应引导学生关注并补充这些未明确的细节。例如,通过插图创设对话场景,让学生假设其他角色的行为和对话,这不仅能锻炼他们的想象力,也能加强...
首先,关于PHP中的图片处理,一个重要的库是GD库。它提供了一系列处理图片的功能,包括创建图像、裁剪和缩放。在上述内容中,通过自定义的PHP类ImageCrop来实现图片的无变形裁剪和缩放操作。 接下来,我们详细分析...
CSS中的`padding`属性是网页布局中不可或缺的一部分,它用于设置元素内容区域与边框之间的距离,也就是我们所说的边内补白。边内补白的存在可以让元素内容与边框之间保持一定的空间,增加视觉效果或者调整元素内部的...
支持对各种图片的预处理(支持图片的合并,拼接,格式转换,加补白,去除背景色等操作)。 支持批量图片生成PDF,可把图片追加到PDF, 对图片的合并,可以支持拼版操作, 所有功能,封装在20K的dll中,可以嵌入你的...
标题中的“成语故事,因“补白”而精彩”表明这是一个关于成语故事的教育资源,重点在于如何通过“补白”的方式使故事更加生动有趣。这里的“补白”可能指的是在讲述成语故事时,填充故事的细节、背景或寓意,以此来...
在“补白”教学法中,数据分析可以帮助教师识别哪些环节需要留白,以及留白后学生如何更好地理解和创造。 【数据研究】 数据研究是基于大量数据的探索性分析,旨在发现隐藏的模式、趋势或关联。在教育中的数据研究...
利用“补白”的方法,教师可以启发学生的想象力,引导他们深入思考,从而达到对成语内涵的深刻理解。 在“补情节之白”的教学实践中,教师可以通过引导学生想象成语故事中未详细描述的情节部分,帮助学生更好地理解...
解决缩略图按比例缩放并自动补白问题 修改后台添加新闻出现错误继续执行的BUG luocms v2.0.101201 更新信息: 1.增加后台超级管理员无法删除,避免操作失误造成后台系统无法登录。 2.替换原有默认模板,...
CSS中的`margin`属性是一个非常重要的布局工具,用于设置元素周围的空间,也就是边外补白。边外补白不显示任何颜色或样式,因为它本质上是透明的,但它的作用是控制元素之间的距离,使得网页布局更加灵活和美观。 ...
教师可以从引导学生观察图片、关注文本、留意人物情感等方面入手,来充分挖掘教学内容,让教材不再局限于文本内容,而是变得更加丰盈饱满。 补白的形式多种多样,可以是为故事中某一情节编写对话,可以是续编故事等...
本节主要关注如何利用CSS的容器属性——边距属性`margin`和补白属性`padding`来调整XML文档元素的显示效果。这两个属性能够帮助我们精确控制元素与元素之间的距离以及元素内部内容与边框之间的空间。 首先,我们来...
在4.9课堂实践中,主要关注的是如何利用CSS的容器属性——边距属性`margin`和补白属性`padding`来调整XML数据的显示效果。这两个属性在创建清晰、有层次的布局时起到关键作用。 首先,让我们理解一下`margin`和`...