Java深入 - 图片处理

ImageIo的使用

一般我们用ImageIo来保存图片或者读取图片。

read 读取图片:

ImageIo提供了三个read的方法,分别支持File,InputStream,URL和ImageInputStream四中类型。

1. 通过File读取图片信息。

  1. public class ImageTest {  
  2.   
  3.     public static void main(String[] args) {  
  4.         File file = new File("/home/test.jpg"); //本地图片  
  5.         try {  
  6.             //读取文件后,返回BufferedImage  
  7.             BufferedImage image = ImageIO.read(file); //ImageIO读取文件  
  8.             //输出高度和宽度  
  9.             System.out.println("Width:" + image.getWidth());  
  10.             System.out.println("Height:" + image.getHeight());  
  11.         } catch (IOException e) {  
  12.             System.out.println(e.getMessage());  
  13.         }  
  14.     }  
  15.   
  16. }  

2. 通过InputStream读取图片信息,典型的如图片上传。
  1. public class ImageTest {  
  2.   
  3.     public static void main(String[] args) {  
  4.         File file = new File("/home/test.jpg"); //本地图片  
  5.         InputStream in = null;  
  6.         try {  
  7.             in = new FileInputStream(file); //通过FileInputStream,转成InputStream流  
  8.             //读取文件后,返回BufferedImage  
  9.             BufferedImage image = ImageIO.read(in); //ImageIO读取文件  
  10.             //输出高度和宽度  
  11.             System.out.println("Width:" + image.getWidth());  
  12.             System.out.println("Height:" + image.getHeight());  
  13.         } catch (IOException e) {  
  14.             System.out.println(e.getMessage());  
  15.         }  
  16.     }  
  17.   
  18. }  

3. 直接通过URL网络图片来读取图片信息。
  1. public class ImageTest {  
  2.   
  3.     public static void main(String[] args) {  
  4.         try {  
  5.             //直接读取网络图片  
  6.             URL url = new URL("http://www.baidu.com/img/bd_logo1.png");  
  7.             //读取文件后,返回BufferedImage  
  8.             BufferedImage image = ImageIO.read(url); //ImageIO读取文件  
  9.             //输出高度和宽度  
  10.             System.out.println("Width:" + image.getWidth());  
  11.             System.out.println("Height:" + image.getHeight());  
  12.         } catch (IOException e) {  
  13.             System.out.println(e.getMessage());  
  14.         }  
  15.     }  
  16.   
  17. }  

读取网络图片实际上也是将URL转成InputStream进行处理。
  1. public static BufferedImage read(URL input) throws IOException {  
  2.     if (input == null) {  
  3.         throw new IllegalArgumentException("input == null!");  
  4.     }  
  5.   
  6.     InputStream istream = null;  
  7.     try {  
  8.         istream = input.openStream();  
  9.     } catch (IOException e) {  
  10.         throw new IIOException("Can't get input stream from URL!", e);  
  11.     }  
  12.     ImageInputStream stream = createImageInputStream(istream);  
  13.     BufferedImage bi;  
  14.     try {  
  15.         bi = read(stream);  
  16.         if (bi == null) {  
  17.             stream.close();  
  18.         }  
  19.     } finally {  
  20.         istream.close();  
  21.     }  
  22.     return bi;  
  23. }  

write 写入

ImageIO提供了三个write方法:

  1. public static boolean write(RenderedImage im,  
  2.                             String formatName,  
  3.                             ImageOutputStream output) throws IOException;  

  1. public static boolean write(RenderedImage im,  
  2.                             String formatName,  
  3.                             File output) throws IOException  

  1. public static boolean write(RenderedImage im,  
  2.                             String formatName,  
  3.                             OutputStream output) throws IOException  

1. 生成图片例子:
  1. public class ImageTest {  
  2.   
  3.     public static void main(String[] args) {  
  4.         File file = new File("/home/test.jpg"); //本地图片  
  5.         OutputStream out = null;  
  6.         try {  
  7.             BufferedImage image = ImageIO.read(file); //读取文件  
  8.             out = new FileOutputStream(new File("/home/test2.jpg")); //输出到文件流  
  9.             ImageIO.write(image, "jpg", out); //生成图片  
  10.             System.out.println("图片生成成功");  
  11.         } catch (IOException e) {  
  12.             System.out.println(e.getMessage());  
  13.         }  
  14.     }  
  15.   
  16. }  

上面这个就会在/home/目录下生成test2.jpg文件。


2. 网络传输中,一般将图片转成byte流进行传输

  1. public class ImageTest {  
  2.   
  3.     public static void main(String[] args) {  
  4.         File file = new File("/home/test.jpg"); //本地图片  
  5.         ByteArrayOutputStream output = null//byte输出流  
  6.         try {  
  7.             output = new ByteArrayOutputStream();  
  8.             BufferedImage image = ImageIO.read(file); //读取文件  
  9.             boolean flag = ImageIO.write(image, "jpg", output); //写入byte输出流  
  10.             if (!flag) {  
  11.                 System.out.println("写入失败");  
  12.             }  
  13.             byte[] bt = output.toByteArray(); //转成Byte[]  
  14.         } catch (IOException e) {  
  15.             System.out.println(e.getMessage());  
  16.         }  
  17.     }  
  18.   
  19. }  

一个常用的图片处理类

  1. public class ImageUtils {  
  2.   
  3.     /** 
  4.      * 几种常见的图片格式 
  5.      */  
  6.     public static String IMAGE_TYPE_GIF  = "gif";  // 图形交换格式  
  7.     public static String IMAGE_TYPE_JPG  = "jpg";  // 联合照片专家组  
  8.     public static String IMAGE_TYPE_JPEG = "jpeg"// 联合照片专家组  
  9.     public static String IMAGE_TYPE_BMP  = "bmp";  // 英文Bitmap(位图)的简写,它是Windows操作系统中的标准图像文件格式  
  10.     public static String IMAGE_TYPE_PNG  = "png";  // 可移植网络图形  
  11.     public static String IMAGE_TYPE_PSD  = "psd";  // Photoshop的专用格式Photoshop  
  12.   
  13.     /** 
  14.      * 程序入口:用于测试 
  15.      * @param args 
  16.      */  
  17.     public static void main(String[] args) {  
  18.         // 1-缩放图像:  
  19.         // 方法一:按比例缩放  
  20.         ImageUtils.scale("e:/abc.jpg""e:/abc_scale.jpg"2true);//测试OK  
  21.         // 方法二:按高度和宽度缩放  
  22.         ImageUtils.scale2("e:/abc.jpg""e:/abc_scale2.jpg"500300true);//测试OK  
  23.   
  24.         // 2-切割图像:  
  25.         // 方法一:按指定起点坐标和宽高切割  
  26.         ImageUtils.cut("e:/abc.jpg""e:/abc_cut.jpg"00400400);//测试OK  
  27.         // 方法二:指定切片的行数和列数  
  28.         ImageUtils.cut2("e:/abc.jpg""e:/"22);//测试OK  
  29.         // 方法三:指定切片的宽度和高度  
  30.         ImageUtils.cut3("e:/abc.jpg""e:/"300300);//测试OK  
  31.   
  32.         // 3-图像类型转换:  
  33.         ImageUtils.convert("e:/abc.jpg""GIF""e:/abc_convert.gif");//测试OK  
  34.   
  35.         // 4-彩色转黑白:  
  36.         ImageUtils.gray("e:/abc.jpg""e:/abc_gray.jpg");//测试OK  
  37.   
  38.         // 5-给图片添加文字水印:  
  39.         // 方法一:  
  40.         ImageUtils.pressText("我是水印文字""e:/abc.jpg""e:/abc_pressText.jpg""宋体", Font.BOLD, Color.white, 80000.5f);//测试OK  
  41.         // 方法二:  
  42.         ImageUtils.pressText2("我也是水印文字""e:/abc.jpg""e:/abc_pressText2.jpg""黑体"36, Color.white, 80000.5f);//测试OK  
  43.   
  44.         // 6-给图片添加图片水印:  
  45.         ImageUtils.pressImage("e:/abc2.jpg""e:/abc.jpg""e:/abc_pressImage.jpg"000.5f);//测试OK  
  46.     }  
  47.   
  48.     /** 
  49.      * 缩放图像(按比例缩放) 
  50.      * @param srcImageFile 源图像文件地址 
  51.      * @param result 缩放后的图像地址 
  52.      * @param scale 缩放比例 
  53.      * @param flag 缩放选择:true 放大; false 缩小; 
  54.      */  
  55.     public final static void scale(String srcImageFile, String result, int scale, boolean flag) {  
  56.         try {  
  57.             BufferedImage src = ImageIO.read(new File(srcImageFile)); // 读入文件  
  58.             int width = src.getWidth(); // 得到源图宽  
  59.             int height = src.getHeight(); // 得到源图长  
  60.             if (flag) {// 放大  
  61.                 width = width * scale;  
  62.                 height = height * scale;  
  63.             } else {// 缩小  
  64.                 width = width / scale;  
  65.                 height = height / scale;  
  66.             }  
  67.             Image image = src.getScaledInstance(width, height, Image.SCALE_DEFAULT);  
  68.             BufferedImage tag = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);  
  69.             Graphics g = tag.getGraphics();  
  70.             g.drawImage(image, 00null); // 绘制缩小后的图  
  71.             g.dispose();  
  72.             ImageIO.write(tag, "JPEG"new File(result));// 输出到文件流  
  73.         } catch (IOException e) {  
  74.             e.printStackTrace();  
  75.         }  
  76.     }  
  77.   
  78.     /** 
  79.      * 缩放图像(按高度和宽度缩放) 
  80.      * @param srcImageFile 源图像文件地址 
  81.      * @param result 缩放后的图像地址 
  82.      * @param height 缩放后的高度 
  83.      * @param width 缩放后的宽度 
  84.      * @param bb 比例不对时是否需要补白:true为补白; false为不补白; 
  85.      */  
  86.     public final static void scale2(String srcImageFile, String result, int height, int width, boolean bb) {  
  87.         try {  
  88.             double ratio = 0.0// 缩放比例  
  89.             File f = new File(srcImageFile);  
  90.             BufferedImage bi = ImageIO.read(f);  
  91.             Image itemp = bi.getScaledInstance(width, height, bi.SCALE_SMOOTH);  
  92.             // 计算比例  
  93.             if ((bi.getHeight() > height) || (bi.getWidth() > width)) {  
  94.                 if (bi.getHeight() > bi.getWidth()) {  
  95.                     ratio = (new Integer(height)).doubleValue() / bi.getHeight();  
  96.                 } else {  
  97.                     ratio = (new Integer(width)).doubleValue() / bi.getWidth();  
  98.                 }  
  99.                 AffineTransformOp op = new AffineTransformOp(AffineTransform.getScaleInstance(ratio, ratio), null);  
  100.                 itemp = op.filter(bi, null);  
  101.             }  
  102.             if (bb) {//补白  
  103.                 BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);  
  104.                 Graphics2D g = image.createGraphics();  
  105.                 g.setColor(Color.white);  
  106.                 g.fillRect(00, width, height);  
  107.                 if (width == itemp.getWidth(null))  
  108.                     g.drawImage(itemp, 0, (height - itemp.getHeight(null)) / 2, itemp.getWidth(null), itemp.getHeight(null), Color.white, null);  
  109.                 else  
  110.                     g.drawImage(itemp, (width - itemp.getWidth(null)) / 20, itemp.getWidth(null), itemp.getHeight(null), Color.white, null);  
  111.                 g.dispose();  
  112.                 itemp = image;  
  113.             }  
  114.             ImageIO.write((BufferedImage) itemp, "JPEG"new File(result));  
  115.         } catch (IOException e) {  
  116.             e.printStackTrace();  
  117.         }  
  118.     }  
  119.   
  120.     /** 
  121.      * 图像切割(按指定起点坐标和宽高切割) 
  122.      * @param srcImageFile 源图像地址 
  123.      * @param result 切片后的图像地址 
  124.      * @param x 目标切片起点坐标X 
  125.      * @param y 目标切片起点坐标Y 
  126.      * @param width 目标切片宽度 
  127.      * @param height 目标切片高度 
  128.      */  
  129.     public final static void cut(String srcImageFile, String result, int x, int y, int width, int height) {  
  130.         try {  
  131.             // 读取源图像  
  132.             BufferedImage bi = ImageIO.read(new File(srcImageFile));  
  133.             int srcWidth = bi.getHeight(); // 源图宽度  
  134.             int srcHeight = bi.getWidth(); // 源图高度  
  135.             if (srcWidth > 0 && srcHeight > 0) {  
  136.                 Image image = bi.getScaledInstance(srcWidth, srcHeight, Image.SCALE_DEFAULT);  
  137.                 // 四个参数分别为图像起点坐标和宽高  
  138.                 // 即: CropImageFilter(int x,int y,int width,int height)  
  139.                 ImageFilter cropFilter = new CropImageFilter(x, y, width, height);  
  140.                 Image img = Toolkit.getDefaultToolkit().createImage(new FilteredImageSource(image.getSource(), cropFilter));  
  141.                 BufferedImage tag = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);  
  142.                 Graphics g = tag.getGraphics();  
  143.                 g.drawImage(img, 00, width, height, null); // 绘制切割后的图  
  144.                 g.dispose();  
  145.                 // 输出为文件  
  146.                 ImageIO.write(tag, "JPEG"new File(result));  
  147.             }  
  148.         } catch (Exception e) {  
  149.             e.printStackTrace();  
  150.         }  
  151.     }  
  152.   
  153.     /** 
  154.      * 图像切割(指定切片的行数和列数) 
  155.      * @param srcImageFile 源图像地址 
  156.      * @param descDir 切片目标文件夹 
  157.      * @param rows 目标切片行数。默认2,必须是范围 [1, 20] 之内 
  158.      * @param cols 目标切片列数。默认2,必须是范围 [1, 20] 之内 
  159.      */  
  160.     public final static void cut2(String srcImageFile, String descDir, int rows, int cols) {  
  161.         try {  
  162.             if (rows <= 0 || rows > 20)  
  163.                 rows = 2// 切片行数  
  164.             if (cols <= 0 || cols > 20)  
  165.                 cols = 2// 切片列数  
  166.             // 读取源图像  
  167.             BufferedImage bi = ImageIO.read(new File(srcImageFile));  
  168.             int srcWidth = bi.getHeight(); // 源图宽度  
  169.             int srcHeight = bi.getWidth(); // 源图高度  
  170.             if (srcWidth > 0 && srcHeight > 0) {  
  171.                 Image img;  
  172.                 ImageFilter cropFilter;  
  173.                 Image image = bi.getScaledInstance(srcWidth, srcHeight, Image.SCALE_DEFAULT);  
  174.                 int destWidth = srcWidth; // 每张切片的宽度  
  175.                 int destHeight = srcHeight; // 每张切片的高度  
  176.                 // 计算切片的宽度和高度  
  177.                 if (srcWidth % cols == 0) {  
  178.                     destWidth = srcWidth / cols;  
  179.                 } else {  
  180.                     destWidth = (int) Math.floor(srcWidth / cols) + 1;  
  181.                 }  
  182.                 if (srcHeight % rows == 0) {  
  183.                     destHeight = srcHeight / rows;  
  184.                 } else {  
  185.                     destHeight = (int) Math.floor(srcWidth / rows) + 1;  
  186.                 }  
  187.                 // 循环建立切片  
  188.                 // 改进的想法:是否可用多线程加快切割速度  
  189.                 for (int i = 0; i < rows; i++) {  
  190.                     for (int j = 0; j < cols; j++) {  
  191.                         // 四个参数分别为图像起点坐标和宽高  
  192.                         // 即: CropImageFilter(int x,int y,int width,int height)  
  193.                         cropFilter = new CropImageFilter(j * destWidth, i * destHeight, destWidth, destHeight);  
  194.                         img = Toolkit.getDefaultToolkit().createImage(new FilteredImageSource(image.getSource(), cropFilter));  
  195.                         BufferedImage tag = new BufferedImage(destWidth, destHeight, BufferedImage.TYPE_INT_RGB);  
  196.                         Graphics g = tag.getGraphics();  
  197.                         g.drawImage(img, 00null); // 绘制缩小后的图  
  198.                         g.dispose();  
  199.                         // 输出为文件  
  200.                         ImageIO.write(tag, "JPEG"new File(descDir + "_r" + i + "_c" + j + ".jpg"));  
  201.                     }  
  202.                 }  
  203.             }  
  204.         } catch (Exception e) {  
  205.             e.printStackTrace();  
  206.         }  
  207.     }  
  208.   
  209.     /** 
  210.      * 图像切割(指定切片的宽度和高度) 
  211.      * @param srcImageFile 源图像地址 
  212.      * @param descDir 切片目标文件夹 
  213.      * @param destWidth 目标切片宽度。默认200 
  214.      * @param destHeight 目标切片高度。默认150 
  215.      */  
  216.     public final static void cut3(String srcImageFile, String descDir, int destWidth, int destHeight) {  
  217.         try {  
  218.             if (destWidth <= 0)  
  219.                 destWidth = 200// 切片宽度  
  220.             if (destHeight <= 0)  
  221.                 destHeight = 150// 切片高度  
  222.             // 读取源图像  
  223.             BufferedImage bi = ImageIO.read(new File(srcImageFile));  
  224.             int srcWidth = bi.getHeight(); // 源图宽度  
  225.             int srcHeight = bi.getWidth(); // 源图高度  
  226.             if (srcWidth > destWidth && srcHeight > destHeight) {  
  227.                 Image img;  
  228.                 ImageFilter cropFilter;  
  229.                 Image image = bi.getScaledInstance(srcWidth, srcHeight, Image.SCALE_DEFAULT);  
  230.                 int cols = 0// 切片横向数量  
  231.                 int rows = 0// 切片纵向数量  
  232.                 // 计算切片的横向和纵向数量  
  233.                 if (srcWidth % destWidth == 0) {  
  234.                     cols = srcWidth / destWidth;  
  235.                 } else {  
  236.                     cols = (int) Math.floor(srcWidth / destWidth) + 1;  
  237.                 }  
  238.                 if (srcHeight % destHeight == 0) {  
  239.                     rows = srcHeight / destHeight;  
  240.                 } else {  
  241.                     rows = (int) Math.floor(srcHeight / destHeight) + 1;  
  242.                 }  
  243.                 // 循环建立切片  
  244.                 // 改进的想法:是否可用多线程加快切割速度  
  245.                 for (int i = 0; i < rows; i++) {  
  246.                     for (int j = 0; j < cols; j++) {  
  247.                         // 四个参数分别为图像起点坐标和宽高  
  248.                         // 即: CropImageFilter(int x,int y,int width,int height)  
  249.                         cropFilter = new CropImageFilter(j * destWidth, i * destHeight, destWidth, destHeight);  
  250.                         img = Toolkit.getDefaultToolkit().createImage(new FilteredImageSource(image.getSource(), cropFilter));  
  251.                         BufferedImage tag = new BufferedImage(destWidth, destHeight, BufferedImage.TYPE_INT_RGB);  
  252.                         Graphics g = tag.getGraphics();  
  253.                         g.drawImage(img, 00null); // 绘制缩小后的图  
  254.                         g.dispose();  
  255.                         // 输出为文件  
  256.                         ImageIO.write(tag, "JPEG"new File(descDir + "_r" + i + "_c" + j + ".jpg"));  
  257.                     }  
  258.                 }  
  259.             }  
  260.         } catch (Exception e) {  
  261.             e.printStackTrace();  
  262.         }  
  263.     }  
  264.   
  265.     /** 
  266.      * 图像类型转换:GIF->JPG、GIF->PNG、PNG->JPG、PNG->GIF(X)、BMP->PNG 
  267.      * @param srcImageFile 源图像地址 
  268.      * @param formatName 包含格式非正式名称的 String:如JPG、JPEG、GIF等 
  269.      * @param destImageFile 目标图像地址 
  270.      */  
  271.     public final static void convert(String srcImageFile, String formatName, String destImageFile) {  
  272.         try {  
  273.             File f = new File(srcImageFile);  
  274.             f.canRead();  
  275.             f.canWrite();  
  276.             BufferedImage src = ImageIO.read(f);  
  277.             ImageIO.write(src, formatName, new File(destImageFile));  
  278.         } catch (Exception e) {  
  279.             e.printStackTrace();  
  280.         }  
  281.     }  
  282.   
  283.     /** 
  284.      * 彩色转为黑白 
  285.      * @param srcImageFile 源图像地址 
  286.      * @param destImageFile 目标图像地址 
  287.      */  
  288.     public final static void gray(String srcImageFile, String destImageFile) {  
  289.         try {  
  290.             BufferedImage src = ImageIO.read(new File(srcImageFile));  
  291.             ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY);  
  292.             ColorConvertOp op = new ColorConvertOp(cs, null);  
  293.             src = op.filter(src, null);  
  294.             ImageIO.write(src, "JPEG"new File(destImageFile));  
  295.         } catch (IOException e) {  
  296.             e.printStackTrace();  
  297.         }  
  298.     }  
  299.   
  300.     /** 
  301.      * 给图片添加文字水印 
  302.      * @param pressText 水印文字 
  303.      * @param srcImageFile 源图像地址 
  304.      * @param destImageFile 目标图像地址 
  305.      * @param fontName 水印的字体名称 
  306.      * @param fontStyle 水印的字体样式 
  307.      * @param color 水印的字体颜色 
  308.      * @param fontSize 水印的字体大小 
  309.      * @param x 修正值 
  310.      * @param y 修正值 
  311.      * @param alpha 透明度:alpha 必须是范围 [0.0, 1.0] 之内(包含边界值)的一个浮点数字 
  312.      */  
  313.     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) {  
  314.         try {  
  315.             File img = new File(srcImageFile);  
  316.             Image src = ImageIO.read(img);  
  317.             int width = src.getWidth(null);  
  318.             int height = src.getHeight(null);  
  319.             BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);  
  320.             Graphics2D g = image.createGraphics();  
  321.             g.drawImage(src, 00, width, height, null);  
  322.             g.setColor(color);  
  323.             g.setFont(new Font(fontName, fontStyle, fontSize));  
  324.             g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha));  
  325.             // 在指定坐标绘制水印文字  
  326.             g.drawString(pressText, (width - (getLength(pressText) * fontSize)) / 2 + x, (height - fontSize) / 2 + y);  
  327.             g.dispose();  
  328.             ImageIO.write((BufferedImage) image, "JPEG"new File(destImageFile));// 输出到文件流  
  329.         } catch (Exception e) {  
  330.             e.printStackTrace();  
  331.         }  
  332.     }  
  333.   
  334.     /** 
  335.      * 给图片添加文字水印 
  336.      * @param pressText 水印文字 
  337.      * @param srcImageFile 源图像地址 
  338.      * @param destImageFile 目标图像地址 
  339.      * @param fontName 字体名称 
  340.      * @param fontStyle 字体样式 
  341.      * @param color 字体颜色 
  342.      * @param fontSize 字体大小 
  343.      * @param x 修正值 
  344.      * @param y 修正值 
  345.      * @param alpha 透明度:alpha 必须是范围 [0.0, 1.0] 之内(包含边界值)的一个浮点数字 
  346.      */  
  347.     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) {  
  348.         try {  
  349.             File img = new File(srcImageFile);  
  350.             Image src = ImageIO.read(img);  
  351.             int width = src.getWidth(null);  
  352.             int height = src.getHeight(null);  
  353.             BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);  
  354.             Graphics2D g = image.createGraphics();  
  355.             g.drawImage(src, 00, width, height, null);  
  356.             g.setColor(color);  
  357.             g.setFont(new Font(fontName, fontStyle, fontSize));  
  358.             g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha));  
  359.             // 在指定坐标绘制水印文字  
  360.             g.drawString(pressText, (width - (getLength(pressText) * fontSize)) / 2 + x, (height - fontSize) / 2 + y);  
  361.             g.dispose();  
  362.             ImageIO.write((BufferedImage) image, "JPEG"new File(destImageFile));  
  363.         } catch (Exception e) {  
  364.             e.printStackTrace();  
  365.         }  
  366.     }  
  367.   
  368.     /** 
  369.      * 给图片添加图片水印 
  370.      * @param pressImg 水印图片 
  371.      * @param srcImageFile 源图像地址 
  372.      * @param destImageFile 目标图像地址 
  373.      * @param x 修正值。 默认在中间 
  374.      * @param y 修正值。 默认在中间 
  375.      * @param alpha 透明度:alpha 必须是范围 [0.0, 1.0] 之内(包含边界值)的一个浮点数字 
  376.      */  
  377.     public final static void pressImage(String pressImg, String srcImageFile, String destImageFile, int x, int y, float alpha) {  
  378.         try {  
  379.             File img = new File(srcImageFile);  
  380.             Image src = ImageIO.read(img);  
  381.             int wideth = src.getWidth(null);  
  382.             int height = src.getHeight(null);  
  383.             BufferedImage image = new BufferedImage(wideth, height, BufferedImage.TYPE_INT_RGB);  
  384.             Graphics2D g = image.createGraphics();  
  385.             g.drawImage(src, 00, wideth, height, null);  
  386.             // 水印文件  
  387.             Image src_biao = ImageIO.read(new File(pressImg));  
  388.             int wideth_biao = src_biao.getWidth(null);  
  389.             int height_biao = src_biao.getHeight(null);  
  390.             g.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha));  
  391.             g.drawImage(src_biao, (wideth - wideth_biao) / 2, (height - height_biao) / 2, wideth_biao, height_biao, null);  
  392.             // 水印文件结束  
  393.             g.dispose();  
  394.             ImageIO.write((BufferedImage) image, "JPEG"new File(destImageFile));  
  395.         } catch (Exception e) {  
  396.             e.printStackTrace();  
  397.         }  
  398.     }  
  399.   
  400.     /** 
  401.      * 计算text的长度(一个中文算两个字符) 
  402.      * @param text 
  403.      * @return 
  404.      */  
  405.     public final static int getLength(String text) {  
  406.         int length = 0;  
  407.         for (int i = 0; i < text.length(); i++) {  
  408.             if (new String(text.charAt(i) + "").getBytes().length > 1) {  
  409.                 length += 2;  
  410.             } else {  
  411.                 length += 1;  
  412.             }  
  413.         }  
  414.         return length / 2;  
  415.     }  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值