1. 程式人生 > >java工具類——圖片新增水印

java工具類——圖片新增水印

import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Toolkit;
import java.awt.color.ColorSpace;
import java.awt.geom.AffineTransform;
import java.awt.image.AffineTransformOp;
import java.awt.image.BufferedImage;
import java.awt.image.ColorConvertOp; import java.awt.image.CropImageFilter; import java.awt.image.FilteredImageSource; import java.awt.image.ImageFilter; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException;
import java.io.InputStream; import java.io.OutputStream; import java.sql.Connection; import java.sql.ResultSet; import javax.imageio.ImageIO; import javax.naming.NamingException; import sun.misc.BASE64Decoder; import sun.misc.BASE64Encoder; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject;
import com.justep.baas.action.ActionContext; import com.justep.baas.data.sql.SQLException; import com.sun.image.codec.jpeg.JPEGCodec; import com.sun.image.codec.jpeg.JPEGImageEncoder; /** * 圖片處理工具類:<br> * 功能:縮放影象、切割影象、影象型別轉換、彩色轉黑白、文字水印、圖片水印等 * */ public class Watermark { /** * 幾種常見的圖片格式 */ public static String IMAGE_TYPE_GIF = "gif";// 圖形交換格式 public static String IMAGE_TYPE_JPG = "jpg";// 聯合照片專家組 public static String IMAGE_TYPE_JPEG = "jpeg";// 聯合照片專家組 public static String IMAGE_TYPE_BMP = "bmp";// 英文Bitmap(點陣圖)的簡寫,它是Windows作業系統中的標準影象檔案格式 public static String IMAGE_TYPE_PNG = "png";// 可移植網路圖形 public static String IMAGE_TYPE_PSD = "psd";// Photoshop的專用格式Photoshop private static BASE64Encoder base64en = new BASE64Encoder(); private static BASE64Decoder base64de = new BASE64Decoder(); // 水印圖片base64碼 private static String shuiyingImg = "";/** * 根據base64碼加上水印後返回新的base64碼 * * @param srcStr * 照片base64字串 * UdateLocalStandClassDatajava2UdateLocalStandClassDatajava2 * @return */ public final static String addWatermark(String srcStr) throws IOException, Exception { // 根據傳遞的base64圖片的大小來決定水印圖片的大小。 // 處理透明資訊 String newStr = ""; float alpha = 0.3F; int srcWidth = 0; int srcHeight = 0; byte[] b; try { b = base64de.decodeBuffer(srcStr); InputStream is = new java.io.ByteArrayInputStream(b); BufferedImage src = ImageIO.read(is); if (src != null) { srcWidth = src.getWidth(null); srcHeight = src.getHeight(null); if (srcWidth <= 0 || srcHeight <= 0) return null; // 根據原始圖片變換水印圖片的尺寸 BufferedImage waterMark = resize(shuiyingImg, srcWidth, srcHeight); /* 新增水印 */ BufferedImage img = new java.awt.image.BufferedImage(srcWidth, srcHeight, BufferedImage.TYPE_USHORT_565_RGB); // 建立畫板 Graphics2D graph = img.createGraphics(); // 把原圖印到圖板上 graph.drawImage(src, null, 0, 0); // 設定透明度,alpha graph.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha)); // 畫水印圖片 graph.drawImage(waterMark, null, 0, 0); /* 把圖片轉換為位元組 */ ByteArrayOutputStream jpegOutputStream = new ByteArrayOutputStream(); JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(jpegOutputStream); encoder.encode(img); byte[] resultByte = jpegOutputStream.toByteArray(); ImageIO.write(img, "jpg", new File("C:/Users/apple/Desktop/20170106213913407.jpg")); System.out.println("加水印完成"); graph.dispose(); // System.out.println(base64en.encode(resultByte)); newStr = base64en.encode(resultByte); } else { System.out.println(11); return null; } } catch (Exception e) { e.printStackTrace(); } return newStr; } /** * 根據圖片大小,自動變化水印圖片大小。 * * @param src * : * @param w * :原圖片寬度 * @param h * :元圖片高度 * @return:返回image */ public static BufferedImage resize(String src, int w, int h) { byte[] b; // 載入記憶體中的水印圖片 try { b = base64de.decodeBuffer(src); InputStream is = new java.io.ByteArrayInputStream(b); BufferedImage img = ImageIO.read(is); // 獲得適合的縮放比率,即以在規定縮略尺寸中完整顯示圖片內容的同時又保證最大的縮放比率 // 根據比例畫出快取影象 BufferedImage mini = new java.awt.image.BufferedImage(w, h, BufferedImage.TYPE_USHORT_565_RGB); Graphics2D gmini = mini.createGraphics(); gmini.setBackground(Color.WHITE); // 讓生成的圖片按相同的比例變換 gmini.clearRect(0, 0, w, h); AffineTransform trans = new AffineTransform(); // 長和寬同時變換 trans.scale((double) w / img.getWidth(), (double) h / img.getHeight()); gmini.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, 0.7f)); AffineTransformOp op = new AffineTransformOp(trans, AffineTransformOp.TYPE_BILINEAR); gmini.drawImage(img, op, 0, 0); gmini.dispose(); return mini; } catch (IOException e) { return null; } } /** * * @param args * * public static void main(String[] args) { * * String imgFile = * "C:/Users/apple/Desktop/20170106213913407.png";//待處理的圖片 * 不同圖片型別加不同字首 InputStream in = null; byte[] data = null; * //讀取圖片位元組陣列 try{ in = new FileInputStream(imgFile); data = new * byte[in.available()]; in.read(data); in.close(); }catch * (IOException e){ e.printStackTrace(); } //對位元組陣列Base64編碼 * BASE64Encoder encoder = new BASE64Encoder(); try { String str * = ImageUtls.addWatermark(encoder.encode(data)); * System.out.print(str); } catch (IOException e) { * e.printStackTrace(); } catch (Exception e) { * e.printStackTrace(); } } */ /** * 程式入口:用於測試 * * @param args */ /* * public static void main(String[] args) { // 1-縮放影象: // 方法一:按比例縮放 * ImageUtls.scale("e:/abc.jpg", "e:/abc_scale.jpg", 2, true);//測試OK // * 方法二:按高度和寬度縮放 ImageUtls.scale2("e:/abc.jpg", "e:/abc_scale2.jpg", 500, * 300, true);//測試OK // 2-切割影象: // 方法一:按指定起點座標和寬高切割 * ImageUtls.cut("e:/abc.jpg", "e:/abc_cut.jpg", 0, 0, 400, 400 );//測試OK // * 方法二:指定切片的行數和列數 ImageUtls.cut2("e:/abc.jpg", "e:/", 2, 2 );//測試OK // * 方法三:指定切片的寬度和高度 ImageUtls.cut3("e:/abc.jpg", "e:/", 300, 300 );//測試OK // * 3-影象型別轉換: ImageUtls.convert("e:/abc.jpg", "GIF", * "e:/abc_convert.gif");//測試OK // 4-彩色轉黑白: ImageUtls.gray("e:/abc.jpg", * "e:/abc_gray.jpg");//測試OK // 6-給圖片新增圖片水印: * ImageUtls.pressImage("e:/abc2.jpg", "e:/abc.jpg","e:/abc_pressImage.jpg", * 0, 0, 0.5f);//測試OK * * // 5-給圖片新增文字水印: * * base64ToImage(shuiyingImg, "C:/Users/apple/Desktop/liupeng.png");GGGGGG * // 方法一: * ImageUtls.pressText("我是水印文字","C:/Users/apple/Desktop/liupeng.png", * "C:/Users/apple/Desktop/liupeng11.png","宋體",Font.BOLD,Color.blue,20, 0, * 0, 0.5f);//測試OK // 方法二: ImageUtls.pressText2("我也是水印文字", * "C:/Users/apple/Desktop/liupeng.png" * ,"C:/Users/apple/Desktop/liupeng22.png", "黑體", 36, Color.blue, 50, * 100,100, 0.5f);//測試OK * * String str = * "data:image/png;base64,"+imageToBase64("C:/Users/apple/Desktop/liupeng11.png" * ); String newStr = * "data:image/png;base64,"+imageToBase64("C:/Users/apple/Desktop/liupeng22.png" * ); System.out.println("sdasdasd:"+str); * System.out.println("asdasd"+newStr); * * //1.base64儲存為圖片 2.加水印 3.生成新的base64串 } */ /** * 縮放影象(按比例縮放) * * @param srcImageFile * 源影象檔案地址 * @param result * 縮放後的影象地址 * @param scale * 縮放比例 * @param flag * 縮放選擇:true 放大; false 縮小; */ public final static void scale(String srcImageFile, String result, int scale, boolean flag) { try { BufferedImage src = ImageIO.read(new File(srcImageFile)); // 讀入檔案 int width = src.getWidth(); // 得到源圖寬 int height = src.getHeight(); // 得到源圖長 if (flag) {// 放大 width = width * scale; height = height * scale; } else {// 縮小 width = width / scale; height = height / scale; } Image image = src.getScaledInstance(width, height, Image.SCALE_DEFAULT); BufferedImage tag = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics g = tag.getGraphics(); g.drawImage(image, 0, 0, null); // 繪製縮小後的圖 g.dispose(); ImageIO.write(tag, "JPEG", new File(result));// 輸出到檔案流 } catch (IOException e) { e.printStackTrace(); } } /** * 縮放影象(按高度和寬度縮放) * * @param srcImageFile * 源影象檔案地址 * @param result * 縮放後的影象地址 * @param height * 縮放後的高度 * @param width * 縮放後的寬度 * @param bb * 比例不對時是否需要補白:true為補白; false為不補白; */ public final static void scale2(String srcImageFile, String result, int height, int width, boolean bb) { try { double ratio = 0.0; // 縮放比例 File f = new File(srcImageFile); BufferedImage bi = ImageIO.read(f); Image itemp = bi.getScaledInstance(width, height, bi.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, "JPEG", new File(result)); } catch (IOException e) { e.printStackTrace(); } } /** * 影象切割(按指定起點座標和寬高切割) * * @param srcImageFile * 源影象地址 * @param result * 切片後的影象地址 * @param x * 目標切片起點座標X * @param y * 目標切片起點座標Y * @param width * 目標切片寬度 * @param height * 目標切片高度 */ public final static void cut(String srcImageFile, String result, int x, int y, int width, int height) { try { // 讀取源影象 BufferedImage bi = ImageIO.read(new File(srcImageFile)); int srcWidth = bi.getHeight(); // 源圖寬度 int srcHeight = bi.getWidth(); // 源圖高度 if (srcWidth > 0 && srcHeight > 0) { Image image = bi.getScaledInstance(srcWidth, srcHeight, Image.SCALE_DEFAULT); // 四個引數分別為影象起點座標和寬高 // 即: CropImageFilter(int x,int y,int width,int height) ImageFilter cropFilter = new CropImageFilter(x, y, width, height); Image img = Toolkit.getDefaultToolkit().createImage(new FilteredImageSource(image.getSource(), cropFilter)); BufferedImage tag = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics g = tag.getGraphics(); g.drawImage(img, 0, 0, width, height, null); // 繪製切割後的圖 g.dispose(); // 輸出為檔案 ImageIO.write(tag, "JPEG", new File(result)); } } catch (Exception e) { e.printStackTrace(); } } /** * 影象切割(指定切片的行數和列數) * * @param srcImageFile * 源影象地址 * @param descDir * 切片目標資料夾 * @param rows * 目標切片行數。預設2,必須是範圍 [1, 20] 之內 * @param cols * 目標切片列數。預設2,必須是範圍 [1, 20] 之內 */ public final static void cut2(String srcImageFile, String descDir, int rows, int cols) { try { if (rows <= 0 || rows > 20) rows = 2; // 切片行數 if (cols <= 0 || cols > 20) cols = 2; // 切片列數 // 讀取源影象 BufferedImage bi = ImageIO.read(new File(srcImageFile)); int srcWidth = bi.getHeight(); // 源圖寬度 int srcHeight = bi.getWidth(); // 源圖高度 if (srcWidth > 0 && srcHeight > 0) { Image img; ImageFilter cropFilter; Image image = bi.getScaledInstance(srcWidth, srcHeight, Image.SCALE_DEFAULT); int destWidth = srcWidth; // 每張切片的寬度 int destHeight = srcHeight; // 每張切片的高度 // 計算切片的寬度和高度 if (srcWidth % cols == 0) { destWidth = srcWidth / cols; } else { destWidth = (int) Math.floor(srcWidth / cols) + 1; } if (srcHeight % rows == 0) { destHeight = srcHeight / rows; } else { destHeight = (int) Math.floor(srcWidth / rows) + 1; } // 迴圈建立切片 // 改進的想法:是否可用多執行緒加快切割速度 for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { // 四個引數分別為影象起點座標和寬高 // 即: CropImageFilter(int x,int y,int width,int height) cropFilter = new CropImageFilter(j * destWidth, i * destHeight, destWidth, destHeight); img = Toolkit.getDefaultToolkit().createImage(new FilteredImageSource(image.getSource(), cropFilter)); BufferedImage tag = new BufferedImage(destWidth, destHeight, BufferedImage.TYPE_INT_RGB); Graphics g = tag.getGraphics(); g.drawImage(img, 0, 0, null); // 繪製縮小後的圖 g.dispose(); // 輸出為檔案 ImageIO.write(tag, "JPEG", new File(descDir + "_r" + i + "_c" + j + ".jpg")); } } } } catch (Exception e) { e.printStackTrace(); } } /** * 影象切割(指定切片的寬度和高度) * * @param srcImageFile * 源影象地址 * @param descDir * 切片目標資料夾 * @param destWidth * 目標切片寬度。預設200 * @param destHeight * 目標切片高度。預設150 */ public final static void cut3(String srcImageFile, String descDir, int destWidth, int destHeight) { try { if (destWidth <= 0) destWidth = 200; // 切片寬度 if (destHeight <= 0) destHeight = 150; // 切片高度 // 讀取源影象 BufferedImage bi = ImageIO.read(new File(srcImageFile)); int srcWidth = bi.getHeight(); // 源圖寬度 int srcHeight = bi.getWidth(); // 源圖高度 if (srcWidth > destWidth && srcHeight > destHeight) { Image img; ImageFilter cropFilter; Image image = bi.getScaledInstance(srcWidth, srcHeight, Image.SCALE_DEFAULT); int cols = 0; // 切片橫向數量 int rows = 0; // 切片縱向數量 // 計算切片的橫向和縱向數量 if (srcWidth % destWidth == 0) { cols = srcWidth / destWidth; } else { cols = (int) Math.floor(srcWidth / destWidth) + 1; } if (srcHeight % destHeight == 0) { rows = srcHeight / destHeight; } else { rows = (int) Math.floor(srcHeight / destHeight) + 1; } // 迴圈建立切片 // 改進的想法:是否可用多執行緒加快切割速度 for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { // 四個引數分別為影象起點座標和寬高 // 即: CropImageFilter(int x,int y,int width,int height) cropFilter = new CropImageFilter(j * destWidth, i * destHeight, destWidth, destHeight); img = Toolkit.getDefaultToolkit().createImage(new FilteredImageSource(image.getSource(), cropFilter)); BufferedImage tag = new BufferedImage(destWidth, destHeight, BufferedImage.TYPE_INT_RGB); Graphics g = tag.getGraphics(); g.drawImage(img, 0, 0, null); // 繪製縮小後的圖 g.dispose(); // 輸出為檔案 ImageIO.write(tag, "JPEG", new File(descDir + "_r" + i + "_c" + j + ".jpg")); } } } } catch (Exception e) { e.printStackTrace(); } } /** * 影象型別轉換:GIF->JPG、GIF->PNG、PNG->JPG、PNG->GIF(X)、BMP->PNG * * @param srcImageFile * 源影象地址 * @param formatName * 包含格式非正式名稱的 String:如JPG、JPEG、GIF等 * @param destImageFile * 目標影象地址 */ public final static void convert(String srcImageFile, String formatName, String destImageFile) { try { File f = new File(srcImageFile); f.canRead(); f.canWrite(); BufferedImage src = ImageIO.read(f); ImageIO.write(src, formatName, new File(destImageFile)); } catch (Exception e) { e.printStackTrace(); } } /** * 彩色轉為黑白 * * @param srcImageFile * 源影象地址 * @param destImageFile * 目標影象地址 */ public final static void gray(String srcImageFile, String destImageFile) { try { BufferedImage src = ImageIO.read(new File(srcImageFile)); ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY); ColorConvertOp op = new ColorConvertOp(cs, null); src = op.filter(src, null); ImageIO.write(src, "JPEG", new File(destImageFile)); } catch (IOException e) { e.printStackTrace(); } } /** * 給圖片新增文字水印 * * @param pressText * 水印文字 * @param srcImageFile * 源影象地址 * @param destImageFile * 目標影象地址 * @param fontName * 水印的字型名稱 * @param fontStyle * 水印的字型樣式 * @param color * 水印的字型顏色 * @param fontSize * 水印的字型大小 * @param x * 修正值 * @param y * 修正值 * @param alpha * 透明度:alpha 必須是範圍 [0.0, 1.0] 之內(包含邊界值)的一個浮點數字 */ public final static void pressText(String pressText, String srcImageFile, String destImageFile, String fontName, int fontStyle, Color color, int fontSize, int x, int y, float alpha) { try { File img = new File(srcImageFile); Image src = ImageIO.read(img); int width = src.getWidth(null); // GGGGGG int height = src.getHeight(null); BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.drawImage(src, 0, 0, width, height, null); g.setColor(color); g.setFont(new Font(fontName, fontStyle, fontSize)); g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha)); // 在指定座標繪製水印文字 (800 -5*20)/2 -730 /* * g.drawString(pressText, (width - (getLength(pressText) * * fontSize)) / 2 + x, (height - fontSize) / 2 + y); */ g.drawString(pressText, x, (height - fontSize) / 2 + y); g.dispose(); ImageIO.write((BufferedImage) image, "JPEG", new File(destImageFile));// 輸出到檔案流 } catch (Exception e) { e.printStackTrace(); } } /* * 給圖片新增矩形框 * * @param srcImageFile 源影象地址 * * @param destImageFile 目標影象地址 * * @param color 水印的字型顏色 * * @param fontSize 水印的字型大小 * * @param x 修正值 * * @param y 修正值 * * @param alpha 透明度:alpha 必須是範圍 [0.0, 1.0] 之內(包含邊界值)的一個浮點數字 */ public final static void pressText3(String srcImageFile, String destImageFile) { try { File img = new File(srcImageFile); Image src = ImageIO.read(img); int width = src.getWidth(null); // GGGGGG int height = src.getHeight(null); BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.drawImage(src, 0, 0, width, height, null); g.setColor(new Color(255, 255, 255, 138)); g.fillRect(width * 2 / 3, height - 140, width / 3, 140);// 開始寬高,填充寬高 g.dispose(); ImageIO.write((BufferedImage) image, "JPEG", new File(destImageFile));// 輸出到檔案流 } catch (Exception e) { e.printStackTrace(); } } /** * 給圖片新增文字水印自動換行 * * @param pressText * 水印文字 * @param srcImageFile * 源影象地址 * @param destImageFile * 目標影象地址 * @param fontName * 水印的字型名稱 * @param fontStyle * 水印的字型樣式 * @param color * 水印的字型顏色 * @param fontSize * 水印的字型大小 * @param x * 修正值 * @param y * 修正值 * @param alpha * 透明度:alpha 必須是範圍 [0.0, 1.0] 之內(包含邊界值)的一個浮點數字 */ public static int pressText4(String pressText, String srcImageFile, String destImageFile, String fontName, int fontStyle, Color color, int fontSize, int x, int y, float alpha) { int newHeight = 1; try { File img = new File(srcImageFile); Image src = ImageIO.read(img); int width = src.getWidth(null); // GGGGGG int height = src.getHeight(null); BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.drawImage(src, 0, 0, width, height, null); g.setColor(color); g.setFont(new Font(fontName, fontStyle, fontSize)); g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha)); // g.drawString(pressText,x, (height - fontSize) / 2 + y); newHeight = Watermark.iteratorwrite(pressText, (height - fontSize) / 2 + y, x, fontSize, width * 2/3, g); g.dispose(); ImageIO.write((BufferedImage) image, "JPEG", new File(destImageFile));// 輸出到檔案流 } catch (Exception e) { e.printStackTrace(); } return newHeight; } /** * 迭代一句文字 * * @param iter * 迭代內容 * @param y * y軸位置 * @param fontSize * y軸增量 * @param srcImgWidth * 圖片寬度 * @param state * 狀態(情況) * @param x * x軸起始位置 * @param srcImgWidth * 陰影圖片寬度 * @param g畫筆 * @return 返回當前高度 */ public static int iteratorwrite(String iter, int y, int x, int fontSize, int srcImgWidth, Graphics2D g) { // 文字疊加,自動換行疊加 int tempX = x; int tempY = y; int tempCharLen = 0;// 單字元長度 int tempLineLen = 20;// 單行字元總長度臨時計算 StringBuffer sb = new StringBuffer(); int d = 1; for (int i = 0; i < iter.length(); i++) { char tempChar = iter.charAt(i); tempCharLen = getCharLen(tempChar, g); tempLineLen += tempCharLen; tempX = x; if (tempLineLen >= srcImgWidth) {// // 長度已經滿一行,進行文字疊加 if (d > 1) { tempX = tempX + 90; } d++; g.drawString(sb.toString(), tempX, tempY); sb.delete(0, sb.length());// 清空內容,重新追加 tempY += fontSize; tempLineLen = 20; } sb.append(tempChar);// 追加字元 } if(d==1){ g.drawString(sb.toString(), tempX , tempY);// 最後疊加餘下的文字 }else{ g.drawString(sb.toString(), tempX +90, tempY);// 最後疊加餘下的文字 } tempY += fontSize; return d + 1; } /** * 根據文字判斷其長度 * * @param c * 文字 * @param g * 畫筆 * @return */ public static int getCharLen(char c, Graphics2D g) { return g.getFontMetrics(g.getFont()).charWidth(c); } /** * 給圖片新增文字水印 * * @param pressText * 水印文字 * @param srcImageFile * 源影象地址 * @param destImageFile * 目標影象地址 * @param fontName * 字型名稱 * @param fontStyle * 字型樣式 * @param color * 字型顏色 * @param fontSize * 字型大小 * @param x * 修正值 * @param y * 修正值 * @param alpha * 透明度:alpha 必須是範圍 [0.0, 1.0] 之內(包含邊界值)的一個浮點數字 */ public final static void pressText2(String pressText, String srcImageFile, String destImageFile, String fontName, int fontStyle, Color color, int fontSize, int x, int y, float alpha) { try { File img = new File(srcImageFile); Image src = ImageIO.read(img); int width = src.getWidth(null); int height = src.getHeight(null); BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.drawImage(src, 0, 0, width, height, null); g.setColor(color); g.setFont(new Font(fontName, fontStyle, fontSize)); g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha)); // 在指定座標繪製水印文字 g.drawString(pressText, (width - (getLength(pressText) * fontSize)) / 2 + x, (height - fontSize) / 2 + y); g.dispose(); ImageIO.write((BufferedImage) image, "JPEG", new File(destImageFile)); } catch (Exception e) { e.printStackTrace(); } } /** * 給圖片新增圖片水印 * * @param pressImg * 水印圖片 * @param srcImageFile * 源影象地址 * @param destImageFile * 目標影象地址 * @param x * 修正值。 預設在中間 * @param y * 修正值。 預設在中間 * @param alpha * 透明度:alpha 必須是範圍 [0.0, 1.0] 之內(包含邊界值)的一個浮點數字 */ public final static void pressImage(String pressImg, String srcImageFile, String destImageFile, int x, int y, float alpha) { try { File img = new File(srcImageFile); Image src = ImageIO.read(img); int wideth = src.getWidth(null); int height = src.getHeight(null); BufferedImage image = new BufferedImage(wideth, height, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.drawImage(src, 0, 0, wideth, height, null); // 水印檔案 Image src_biao = ImageIO.read(new File(pressImg)); int wideth_biao = src_biao.getWidth(null); int height_biao = src_biao.getHeight(null); g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha)); g.drawImage(src_biao, (wideth - wideth_biao) / 2, (height - height_biao) / 2, wideth_biao, height_biao, null); // 水印檔案結束 g.dispose(); ImageIO.write((BufferedImage) image, "JPEG", new File(destImageFile)); } catch (Exception e) { e.printStackTrace(); } } /** * 計算text的長度(一箇中文算兩個字元) * * @param text * @return */ public final static int getLength(String text) { int length = 0; for (int i = 0; i < text.length(); i++) { if (new String(text.charAt(i) + "").getBytes().length > 1) { length += 2; } else { length += 1; } } return length / 2; } /** * @Descriptionmap 將圖片檔案轉化為位元組陣列字串,並對其進行Base64編碼處理 * @Date 2015-01-26 * @param path * 圖片路徑 * @return */ public static String imageToBase64(String path) {// 將圖片檔案轉化為位元組陣列字串,並對其進行Base64編碼處理 byte[] data = null; // 讀取圖片位元組陣列 try { InputStream in = new FileInputStream(path); data = new byte[in.available()]; in.read(data); in.close(); } catch (IOException e) { e.printStackTrace(); } // 對位元組陣列Base64編碼 BASE64Encoder encoder = new BASE64Encoder(); return encoder.encode(data);// 返回Base64編碼過的位元組陣列字串 } /** * @Descriptionmap 對位元組陣列字串進行Base64解碼並生成圖片 * @Date 2015-01-26 * @param base64 * 圖片Base64資料 * @param path * 圖片路徑 * @return */ public static boolean base64ToImage(String base64, String path) {// 對位元組陣列字串進行Base64解碼並生成圖片 if (base64 == null) { // 影象資料為空 return false; } BASE64Decoder decoder = new BASE64Decoder(); try { // Base64解碼 byte[] bytes = decoder.decodeBuffer(base64); for (int i = 0; i < bytes.length; ++i) { if (bytes[i] < 0) {// 調整異常資料 bytes[i] += 256; } } // 生成jpeg圖片 OutputStream out = new FileOutputStream(path); out.write(bytes); out.flush(); out.close(); return true; } catch (Exception e) { return false; } } }

尚未整理