赞
踩
工作中遇到一个导出文件处理单的问题,因为客户单位有很多领导是使用E人E本工作的,E人E本生成的签名图片,尺寸大小倒是一致。但是由于人为原因,有的人只签了个名字,有的人签了几行。这就导致如果签的字数太少,图片上边会有很大一部分空白区域,会导致导出来的word文件很难看.未处理前的效果如下图.
可以看到,用户只签署了两个字,周围一大片空白区域占了很大的空间,所以需要裁剪一下.只保留签字部分就好了.
以下是实现过程:
- import javax.imageio.ImageIO;
- import java.awt.*;
- import java.awt.image.BufferedImage;
- import java.io.File;
- import java.io.IOException;
-
- public class ImgCropp
- {
-
- private static int WHITE = new Color(255, 255, 255).getRGB();
- private static int BLACK = new Color(0, 0, 0).getRGB();
-
- /**
- * 裁剪图片,默认是黑色字迹.
- * @param sourcePath
- * @param newPath
- * @throws IOException
- */
- public static void ImgCropping(String sourcePath,String newPath) throws IOException
- {
- BufferedImage bufferedImage = ImageIO.read(new File(sourcePath));
- int width = bufferedImage.getWidth();
- int height = bufferedImage.getHeight();
- System.out.println("原图片宽度" + width);
- System.out.println("原图片高度" + height);
- int[] arr = bufferedImageToIntArray(bufferedImage, width, height);
- // blank是作为四周边距留白
- int blank = 20;
- BufferedImage newBufferedImage = bufferedImage.getSubimage(arr[0] - blank, arr[1] - blank, arr[2] + blank * 2, arr[3] + blank * 2);
- ImageIO.write(newBufferedImage, "png", new File(newPath));
- }
-
-
- /**
- * 根据RGB值计算出图片文字区域的上下左右的位置
- * @param image
- * @param width
- * @param height
- * @return
- */
- public static int[] bufferedImageToIntArray(BufferedImage image, int width, int height)
- {
- try
- {
- int rgb = 0;
- int x1 = width;
- int y1 = height;
- int x2 = 0;
- int y2 = 0;
- int temp1 = 0;
- int temp2 = 0;
- // 方式一:通过getRGB()方式获得像素数组
- for (int i = 0; i < width; i++) {
- for (int j = 0; j < height; j++) {
- rgb = image.getRGB(i, j);
- if (rgb == -16777216) {
- temp1 = i;
- temp2 = j;
- // 计算最左侧
- if (x1 >= temp1) {
- x1 = temp1;
- }
- // 计算最右侧
- if (x2 <= temp1) {
- x2 = temp1;
- }
- // 计算最下方
- if (y2 <= temp2) {
- y2 = temp2;
- }
- // 计算最上方
- if (y1 >= temp2) {
- y1 = temp2;
- }
- }
- }
- }
- System.out.println("BLACK: " + BLACK);
- System.out.println("x1: " + x1);
- System.out.println("x2: " + x2);
- System.out.println("y1: " + y1);
- System.out.println("y2: " + y2);
- System.out.println("宽度: " + String.valueOf(x2 - x1));
- System.out.println("高度: " + String.valueOf(y2 - y1));
- return new int[] {x1, y1, x2 - x1, y2 - y1};
- }
- catch (Exception e)
- {
- e.printStackTrace();
- }
- return null;
- }
- }
裁剪后的导出效果:
注意:本方法仅限于字迹是黑色的图片,是其他颜色的需要再继续调试以下,
生成的图片如果是要插入到word里面去的话,要固定一下宽高,不然显示的图片会非常大.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。