溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

java如何實(shí)現(xiàn)給圖片加鋪滿的網(wǎng)格式文字水印

發(fā)布時(shí)間:2021-02-01 09:32:25 來源:億速云 閱讀:302 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)java如何實(shí)現(xiàn)給圖片加鋪滿的網(wǎng)格式文字水印的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

效果:

原圖

java如何實(shí)現(xiàn)給圖片加鋪滿的網(wǎng)格式文字水印

加水印后的圖片

java如何實(shí)現(xiàn)給圖片加鋪滿的網(wǎng)格式文字水印

廢話不多說,直接上代碼

代碼:

package com.example.demo;
 
import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.RenderingHints;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
 
import javax.imageio.ImageIO;
 
/**
 * @author XuYangWei
 * @Date 2021/1/28 09:10
 */
public class WatermarkUtils {
 // 水印透明度
 private static float alpha = 0.5f;
 // 水印文字大小
 public static final int FONT_SIZE = 18;
 // 水印文字字體
 private static Font font = new Font("宋體", Font.PLAIN, FONT_SIZE);
 // 水印文字顏色
 private static Color color = Color.gray;
 // 水印之間的間隔
 private static final int XMOVE = 80;
 // 水印之間的間隔
 private static final int YMOVE = 80;
 
 /**
  * 給圖片添加水印文字
  *
  * @param logoText 水印文字
  * @param srcImgPath 源圖片路徑
  * @param targerPath 目標(biāo)圖片路徑
  */
 public static void ImageByText(String logoText, String srcImgPath, String targerPath) {
  ImageByText(logoText, srcImgPath, targerPath, null);
 }
 
 
 /**
  * 獲取文本長度。漢字為1:1,英文和數(shù)字為2:1
  */
 private 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;
 }
 
 
 /**
  * 給圖片添加水印文字、可設(shè)置水印文字的旋轉(zhuǎn)角度
  *
  * @param logoText
  * @param srcImgPath
  * @param targerPath
  * @param degree
  */
 public static void ImageByText(String logoText, String srcImgPath, String targerPath, Integer degree) {
 
  InputStream is = null;
  OutputStream os = null;
  try {
   // 源圖片
   Image srcImg = ImageIO.read(new File(srcImgPath));
   int width = srcImg.getWidth(null);// 原圖寬度
   int height = srcImg.getHeight(null);// 原圖高度
   BufferedImage buffImg = new BufferedImage(srcImg.getWidth(null), srcImg.getHeight(null),
     BufferedImage.TYPE_INT_RGB);
   // 得到畫筆對象
   Graphics2D g = buffImg.createGraphics();
   // 設(shè)置對線段的鋸齒狀邊緣處理
   g.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
   g.drawImage(srcImg.getScaledInstance(srcImg.getWidth(null), srcImg.getHeight(null), Image.SCALE_SMOOTH),
     0, 0, null);
   // 設(shè)置水印旋轉(zhuǎn)
   if (null != degree) {
    g.rotate(Math.toRadians(degree), (double) buffImg.getWidth() / 2, (double) buffImg.getHeight() / 2);
   }
   // 設(shè)置水印文字顏色
   g.setColor(color);
   // 設(shè)置水印文字Font
   g.setFont(font);
   // 設(shè)置水印文字透明度
   g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha));
 
   int x = -width / 2;
   int y = -height / 2;
   int markWidth = FONT_SIZE * getTextLength(logoText);// 字體長度
   int markHeight = FONT_SIZE;// 字體高度
 
   // 循環(huán)添加水印
   while (x < width * 1.5) {
    y = -height / 2;
    while (y < height * 1.5) {
     g.drawString(logoText, x, y);
 
     y += markHeight + YMOVE;
    }
    x += markWidth + XMOVE;
   }
   // 釋放資源
   g.dispose();
   // 生成圖片
   os = new FileOutputStream(targerPath);
   ImageIO.write(buffImg, "JPG", os);
   System.out.println("添加水印文字成功!");
  } catch (Exception e) {
   e.printStackTrace();
  } finally {
   try {
    if (null != is)
     is.close();
   } catch (Exception e) {
    e.printStackTrace();
   }
   try {
    if (null != os)
     os.close();
   } catch (Exception e) {
    e.printStackTrace();
   }
  }
 }
 
 public static void main(String[] args) {
  String srcImgPath = "D:/1.jpg";
  // 水印文字
  String logoText = "打印無效";
  String targerTextPath3 = "D:/2.jpg";
  System.out.println("給圖片添加水印文字開始...");
  // 給圖片添加斜水印文字
  WatermarkUtils.ImageByText(logoText, srcImgPath, targerTextPath3, -40);
  System.out.println("給圖片添加水印文字結(jié)束...");
 }
}

感謝各位的閱讀!關(guān)于“java如何實(shí)現(xiàn)給圖片加鋪滿的網(wǎng)格式文字水印”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI