1. 程式人生 > 其它 >給圖片新增文字水印和圖片水印

給圖片新增文字水印和圖片水印

技術標籤:基礎java

給圖片新增文字水印和圖片水印
下方 util 這個util我也忘了是從那幾個部落格上覆制 測試的了
就不貼部落格地址了 如果博主能看到這個文章的話 可以把 地址粘到評論去 我把部落格修改了 現在 不是很想找這個東西了

package spring4.imgCaoZuo;
 
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;
import javax.swing.ImageIcon;
 
/**
 * 
 * @Title ImageWatermarkUtil
 * @Description
 * @author Zheng.Zeng
 * @date 2018年8月29日 下午4:47:38
 */
public class ImageWatermarkUtil {
    // 水印透明度
    private static float alpha = 0.5f;
    // 水印文字大小
    public static final int FONT_SIZE = 28;
    // 水印文字字型
    private static Font font = new Font ("微軟雅黑", Font.BOLD, FONT_SIZE);
    // 水印文字顏色
    private static Color color = Color.lightGray;
    // 水印之間的間隔
    private static final int XMOVE = 80;
    // 水印之間的間隔
    private static final int YMOVE = 80;
 
    /**
     * 獲取文字長度。漢字為1:1,英文和數字為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;
    }
 
    /**
     * 給圖片新增水印文字
     * 
     * @param logoText 水印文字
     * @param srcImgPath 源圖片路徑
     * @param targerPath 目標圖片路徑
     */
    public static void ImageByText (String logoText, String srcImgPath, String targerPath) {
        ImageByText (logoText, srcImgPath, targerPath, null);
    }
 
    /**
     * 給圖片新增水印文字、可設定水印文字的旋轉角度
     * 
     * @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 ();
            // 設定對線段的鋸齒狀邊緣處理
            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);
            // 設定水印旋轉
            if (null != degree) {
                g.rotate (Math.toRadians (degree), (double) buffImg.getWidth () / 2, (double) buffImg.getHeight () / 2);
            }
            // 設定水印文字顏色
            g.setColor (color);
            // 設定水印文字Font
            g.setFont (font);
            // 設定水印文字透明度
            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;// 字型高度
 
            // 迴圈新增水印
            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, "JPEG", 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 ();
            }
        }
    }
    /**
     * 給圖片新增水印、可設定水印圖片旋轉角度
     * 
     * @param iconPath
     *            水印圖片路徑       此路徑 只能為本地目錄 無法使用線上檔案
     * @param srcImgPath
     *            源圖片路徑
     * @param targerPath
     *            目標圖片路徑
     * @param degree
     *            水印圖片旋轉角度
     */
    public static void markImageByIcon(String iconPath, String srcImgPath, String targerPath, Integer degree) {
        OutputStream os = null;
        try {
            Image srcImg = ImageIO.read(new File(srcImgPath));

            BufferedImage buffImg = new BufferedImage(srcImg.getWidth(null), srcImg.getHeight(null),
                    BufferedImage.TYPE_INT_RGB);

            // 得到畫筆物件
            // Graphics g= buffImg.getGraphics();
            Graphics2D g = buffImg.createGraphics();

            // 設定對線段的鋸齒狀邊緣處理
            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);

            if (null != degree) {
                // 設定水印旋轉
                g.rotate(Math.toRadians(degree), (double) buffImg.getWidth() / 2, (double) buffImg.getHeight() / 2);
            }

            // 水印圖象的路徑 水印一般為gif或者png的,這樣可設定透明度
            ImageIcon imgIcon = new ImageIcon(iconPath);

            // 得到Image物件。
            Image img = imgIcon.getImage();

//            float alpha = 1f; // 透明度
            float alpha = 0.51f; // 透明度
            g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha));

            // 表示水印圖片的位置
            g.drawImage(img, 150, 300, null);

            g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER));

            g.dispose();

            os = new FileOutputStream(targerPath);

            // 生成圖片
            ImageIO.write(buffImg, "JPG", os);

            System.out.println("圖片完成新增Icon印章。。。。。。");
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (null != os)
                    os.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
}

我在我本地測試的時候 ,想要用遠端伺服器上面的圖片作為icon 來新增水印 結果發現 imag 識別不了
也沒有找有沒有其他方案 來可以進行實現 看了一下 原始碼 發現 他可以傳參的 引數 名字 是 url 但是這個url 指的是 專案的本地目錄(好像是這樣 ?) 忘記了