您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
本篇文章给大家分享的是有关使用Java怎么实现给图片打上水印,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
Java的基本数据类型分为:1、整数类型,用来表示整数的数据类型。2、浮点类型,用来表示小数的数据类型。3、字符类型,字符类型的关键字是“char”。4、布尔类型,是表示逻辑值的基本数据类型。
import javax.imageio.ImageIO; import java.awt.*; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileOutputStream; public class ImageUtils { // 水印字体 private static final Font FONT = new Font("微软雅黑", Font.PLAIN, 14); // 透明度 private static final AlphaComposite COMPOSITE = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.6f); // 水印之间的间隔 private static final int XMOVE = 150; // 水印之间的间隔 private static final int YMOVE = 200; /** * 打水印(文字) * * @param srcImgPath 源文件地址 * @param font 字体 * @param markContentColor 水印颜色 * @param waterMarkContent 水印内容 */ public static void markWithContent(String srcImgPath, Font font, Color markContentColor, String waterMarkContent) { FileOutputStream fos = null; try { // 读取原图片信息 File srcFile = new File(srcImgPath); BufferedImage srcImg = ImageIO.read(srcFile); // 图片宽、高 int imgWidth = srcImg.getWidth(); int imgHeight = srcImg.getHeight(); // 图片缓存 BufferedImage bufImg = new BufferedImage(imgWidth, imgHeight, BufferedImage.TYPE_INT_RGB); // 创建绘图工具 Graphics2D g = bufImg.createGraphics(); // 画入原始图像 g.drawImage(srcImg, 0, 0, imgWidth, imgHeight, null); // 设置水印颜色 g.setColor(markContentColor); // 设置水印透明度 g.setComposite(COMPOSITE); // 设置倾斜角度 g.rotate(Math.toRadians(-35), (double) bufImg.getWidth() / 2, (double) bufImg.getHeight() / 2); // 设置水印字体 g.setFont(font); // 消除java.awt.Font字体的锯齿 g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); int x = -imgWidth / 2; int y; // 字体长度 int markWidth = FONT.getSize() * getTextLength(waterMarkContent); // 字体高度 int markHeight = FONT.getSize(); // 循环添加水印 while (x < imgWidth * 1.5) { y = -imgHeight / 2; while (y < imgHeight * 1.5) { g.drawString(waterMarkContent, x, y); y += markHeight + YMOVE; } x += markWidth + XMOVE; } // 释放画图工具 g.dispose(); // 输出图片 fos = new FileOutputStream(srcFile); ImageIO.write(bufImg, "jpg", fos); } catch (Exception e) { e.printStackTrace(); } finally { if (fos != null) { try { fos.flush(); fos.close(); } catch (Exception e) { e.printStackTrace(); } } } } //计算水印文本长度 //1、中文长度即文本长度 2、英文长度为文本长度二分之一 public static int getTextLength(String text) { //水印文字长度 int length = text.length(); for (int i = 0; i < text.length(); i++) { String s = String.valueOf(text.charAt(i)); if (s.getBytes().length > 1) { length++; } } length = length % 2 == 0 ? length / 2 : length / 2 + 1; return length; } public static void main(String[] args) { ImageUtils.markWithContent("C:\\Users\\lbb\\Pictures\\test.jpg", FONT, Color.darkGray, "水印文字"); } }
打了水印后的效果
import javax.imageio.ImageIO; import java.awt.*; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileOutputStream; public class ImageUtils { // 透明度 private static final AlphaComposite COMPOSITE = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.6f); // 水印之间的间隔 private static final int XMOVE = 150; // 水印之间的间隔 private static final int YMOVE = 200; /** * 打水印(图片) * * @param srcImgPath 源图片路径 * @param markImgPath 水印图片路径 */ public static void markWithImg(String srcImgPath, String markImgPath) { FileOutputStream fos = null; try { // 读取原始图像 File srcFile = new File(srcImgPath); BufferedImage srcImg = ImageIO.read(srcFile); // 原始宽度 int srcImgWidth = srcImg.getWidth(); // 原始高度 int srcImgHeight = srcImg.getHeight(); // 最终图像 BufferedImage bufImg = new BufferedImage(srcImgWidth, srcImgHeight, BufferedImage.TYPE_INT_RGB); // 创建绘图工具 Graphics2D g = bufImg.createGraphics(); // 画入原始图像 g.drawImage(srcImg, 0, 0, srcImgWidth, srcImgHeight, null); // 读取水印图片 BufferedImage markImg = ImageIO.read(new File(markImgPath)); // 图片宽、高 int markImgWidth = markImg.getWidth(); int markImgHeight = markImg.getHeight(); // 设置水印透明度 g.setComposite(COMPOSITE); // 设置倾斜角度 g.rotate(Math.toRadians(-35), (double) bufImg.getWidth() / 2, (double) bufImg.getHeight() / 2); // 循环添加水印 int x = -srcImgWidth / 2; int y; while (x < srcImgWidth * 1.5) { y = -srcImgHeight / 2; while (y < srcImgHeight * 1.5) { g.drawImage(markImg, x, y, null); y += markImgHeight + YMOVE; } x += markImgWidth + XMOVE; } // 释放画图工具 g.dispose(); // 输出图片 fos = new FileOutputStream(srcFile); ImageIO.write(bufImg, "jpg", fos); } catch (Exception e) { e.printStackTrace(); } finally { if (fos != null) { try { fos.flush(); fos.close(); } catch (Exception e) { e.printStackTrace(); } } } } public static void main(String[] args) { ImageUtils.markWithImg("C:\\Users\\lbb\\Pictures\\test.jpg", "C:\\Users\\lbb\\Pictures\\mark.png"); } }
下面是水印图片
下面是打了水印后的效果
以上就是使用Java怎么实现给图片打上水印,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。