package org.img; 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; /** * <pre> * Copy right information: * Project:pdf * File Name:ImageUtils.java * JDK version used: * Commends: * 图片工具类, 图片水印,文字水印,缩放,补白等 * * Modification history : * date ver. author what is modified * --------- ---- --------- --------------------------- * 2014-5-25 1.0 Administrator new * </pre> * * @author Administrator * @version 1.0 */ 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)); System.out.println(width+" "+height); int width_1 = fontSize * getLength(pressText); int height_1 = fontSize; System.out.println(width_1+" "+height_1); 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://Users//Administrator.PC-20130916DUEJ//Pictures//1//u=1239643494,2702066520&fm=23&gp=0.jpg", "12345667891234567", "宋体", Font.BOLD | Font.ITALIC, 20,Color.red, 1366, 768, 1.0f); //resize("C://pic//4.jpg", 1000, 500, true); } }
相关推荐
第二种是添加图片水印和文字水印两种方法,水印图片可以是GIF,PNG透明的文件,我一般采用的是PNG的,因为它的质量和GIF相比要高一些; 适用人群:Java开发者 使用场景:版权信息标注 目标:可以直接拿来用
在这个实例中,我们将探讨如何在Java中实现文字水印、图片水印、图像缩放以及补白功能。以下是一些关键知识点: 1. **Java AWT 和 Swing 图形库**: Java中的`java.awt`和`javax.swing`包提供了丰富的图形用户界面...
在提供的代码段中,我们看到一个名为`ImageUtils`的类,该类包含两个方法,分别用于实现图片水印和文字水印的功能。下面我们将详细探讨这些知识点。 1. **Java AWT 和 Swing 图形库**: Java AWT(Abstract Window...
mode 4 : 只缩放,不裁剪,保留全部图片信息,此时的参数只是限制了生成的图片的最大宽高,不产生补白。 mode 5 : 生成的图比例严格按照需要的比例,宽和高不超过给定的参数。 服务器环境要求 PHP 5.2 ...
4. 第四种模式同样保留图片全部信息并只进行缩放,不同的是,它不会进行补白,只会生成最终缩放后的图片有效像素大小。例如,原始图片是600x600像素,如果需要生成120x100像素的图片,实际生成的图片为100x100像素,...
2. **细节补白**:在教材中,插图和文字往往只展示了一部分信息,教师应引导学生关注并补充这些未明确的细节。例如,通过插图创设对话场景,让学生假设其他角色的行为和对话,这不仅能锻炼他们的想象力,也能加强...
CSS中的`padding`属性是网页布局中不可或缺的一部分,它用于设置元素内容区域与边框之间的距离,也就是我们所说的边内补白。边内补白的存在可以让元素内容与边框之间保持一定的空间,增加视觉效果或者调整元素内部的...
【深度学习】 深度学习是人工智能领域的一种重要技术,它模拟人类大脑的神经网络...在信息技术日益发展的今天,结合深度学习、数据分析等工具,这种教学策略更能适应个性化教育的需求,有助于培养21世纪的核心素养。
标题中的“成语故事,因“补白”而精彩”表明这是一个关于成语故事的教育资源,重点在于如何通过“补白”的方式使故事更加生动有趣。这里的“补白”可能指的是在讲述成语故事时,填充故事的细节、背景或寓意,以此来...
支持对各种图片的预处理(支持图片的合并,拼接,格式转换,加补白,去除背景色等操作)。 支持批量图片生成PDF,可把图片追加到PDF, 对图片的合并,可以支持拼版操作, 所有功能,封装在20K的dll中,可以嵌入你的...
利用“补白”的方法,教师可以启发学生的想象力,引导他们深入思考,从而达到对成语内涵的深刻理解。 在“补情节之白”的教学实践中,教师可以通过引导学生想象成语故事中未详细描述的情节部分,帮助学生更好地理解...
CSS中的`margin`属性是一个非常重要的布局工具,用于设置元素周围的空间,也就是边外补白。边外补白不显示任何颜色或样式,因为它本质上是透明的,但它的作用是控制元素之间的距离,使得网页布局更加灵活和美观。 ...
本节主要关注如何利用CSS的容器属性——边距属性`margin`和补白属性`padding`来调整XML文档元素的显示效果。这两个属性能够帮助我们精确控制元素与元素之间的距离以及元素内部内容与边框之间的空间。 首先,我们来...
在4.9课堂实践中,主要关注的是如何利用CSS的容器属性——边距属性`margin`和补白属性`padding`来调整XML数据的显示效果。这两个属性在创建清晰、有层次的布局时起到关键作用。 首先,让我们理解一下`margin`和`...
文字间隔 字母间隔 文字修饰 纵向排列 文本转换 文本排列 文本缩进 行高 方框属性 上边界 右边界 下边界 左边界 边界 上补白 右补白 下补白 左补白 补白 上边框宽度 右边框宽度 下边框宽度 左...