• (水印)html转图片


    <dependency>
        <groupId>gui.ava</groupId>
        <artifactId>html2image</artifactId>
        <version>2.0.1</version>
    </dependency>
    <dependency>
        <groupId>xml-apis</groupId>
        <artifactId>xml-apis</artifactId>
        <version>1.4.01</version>
    </dependency
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    html

    
    String htmlTemplate = "<div>" +
            "<span>IP地址:127.0.0.1span>国家:AAAspan><br>\n" +
            "<span>省份:AAAAspan>位置:XXXXXXXspan>div>";
    HtmlParser htmlParser = new HtmlParserImpl();
    htmlParser.loadHtml(htmlTemplate);
    ImageRenderer imageRenderer = new ImageRendererImpl(htmlParser);
    imageRenderer.saveImage("D:\\hello-world.png");
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    图片添加水印

    
    /**
     * 复制图片文件,并添加水印
     * @param srcImgPath  原图片路径
     * @param outImgPath  生成的新图片路径
     * @param waterMarkContent  水印内容
     * @param markContentColor  水印颜色
     * @param font  水印字体
     */
    public static void waterPress(String srcImgPath, String outImgPath, String waterMarkContent, Color markContentColor, Font font) {
        try {
            // 读取原图片信息
            File srcImgFile = new File(srcImgPath);
            Image srcImg = null;
            if (srcImgFile.exists() && srcImgFile.isFile() && srcImgFile.canRead()) {
                srcImg = ImageIO.read(srcImgFile);
            }
            // 宽、高
            int srcImgWidth = srcImg.getWidth(null);
            int srcImgHeight = srcImg.getHeight(null);
            // 加水印
            BufferedImage bufImg = new BufferedImage(srcImgWidth, srcImgHeight, BufferedImage.TYPE_INT_RGB);
            Graphics2D g = bufImg.createGraphics();
            g.drawImage(srcImg, 0, 0, srcImgWidth, srcImgHeight, null);
    
            //设置水印颜色
            g.setColor(markContentColor);
            g.setFont(font);
            // 抗锯齿
            g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
            int fontLength = getWatermarkLength(waterMarkContent, g);
            // 实际生成的水印文字,实际文字行数
            Double textLineCount = Math.ceil(Integer.valueOf(fontLength).doubleValue() / Integer.valueOf(srcImgWidth).doubleValue());
            int fontSize = font.getSize();
            // 实际所有的水印文字的高度
            int textHeight = textLineCount.intValue() * fontSize;
            // 相对与X的起始的位置
            int originX = 0;
            // 相对与Y的起始的位置
            int originY = 0;
            // 实际文字大于1行,则x则为默认起始0,
            if (1 == textLineCount.intValue()) {
                // 实际文字行数是1,1/2个图片高度,减去1/2个字符高度
                originY = srcImgHeight / 2 - fontSize / 2;
                // 实际文字行数是1,计算x的居中的起始位置
                originX = (srcImgWidth - fontLength) / 2;
            } else {
                // 实际文字行数大于1,1/2个图片高度减去文字行数所需的高度
                originY = (srcImgHeight - textHeight) / 10;
            }
            System.out.println("水印文字总长度:" + fontLength + ",图片宽度:" + srcImgWidth + ",字符个数:" + waterMarkContent.length());
            //文字叠加,自动换行叠加
            int tempX = originX;
            int tempY = originY;
            int tempCharLen = 0;//单字符长度
            int tempLineLen = 0;//单行字符总长度临时计算
            StringBuffer stringBuffer = new StringBuffer();
            for (int i = 0; i < waterMarkContent.length(); i++) {
                char tempChar = waterMarkContent.charAt(i);
                tempCharLen = getCharLen(tempChar, g);
                if (tempLineLen >= srcImgWidth) {
                    // 绘制前一行
                    g.drawString(stringBuffer.toString(), tempX, tempY);
                    //清空内容,重新追加
                    stringBuffer.delete(0, stringBuffer.length());
                    //文字长度已经满一行,Y的位置加1字符高度
                    tempY = tempY + fontSize;
                    tempLineLen = 0;
                }
                //追加字符
                stringBuffer.append(tempChar);
                tempLineLen += tempCharLen;
            }
            //最后叠加余下的文字
            g.drawString(stringBuffer.toString(), tempX, tempY);
            g.dispose();
            // 输出图片
            FileOutputStream outImgStream = new FileOutputStream(outImgPath);
            ImageIO.write(bufImg, "png", outImgStream);
            outImgStream.flush();
            outImgStream.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    
    public static int getCharLen(char c, Graphics2D g) {
        return g.getFontMetrics(g.getFont()).charWidth(c);
    }
    /**
     * 获取水印文字总长度
     *
     * @paramwaterMarkContent水印的文字
     * @paramg
     * @return水印文字总长度
     */
    public static int getWatermarkLength(String waterMarkContent, Graphics2D g) {
        return g.getFontMetrics(g.getFont()).charsWidth(waterMarkContent.toCharArray(), 0, waterMarkContent.length());
    }
    
    //测试复制图片并添加水印
    public static void testWaterPressFile(){
        // 原图位置, 输出图片位置, 水印字体,水印文字样式,水印文字颜色, 水印文字大小,水印文字内容
        Font font = new Font("微软雅黑",Font.BOLD+ Font.ITALIC, 18);   //水印字体
        Color color = Color.cyan;
        String content = "图片来源:Gaoxs";
        waterPress("D:\\hello-world.png",
                "D:\\hello-world22.png",
                content, color, font);
    }
    public static void main(String[] args) {
       testWaterPressFile();
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
  • 相关阅读:
    使用C#编写一个.NET分析器(一)
    老站长带你全面认识基站和天线
    双非一本后端进字节跳动了,纯分享
    23 Vue 项目初始化和gitee项目同步
    Excel中身份证号码相关操作详解
    微信小程序引入 iconfont 图标
    通用Mapper获取数据表中id为0解决方法。千万别瞎改int为integer了
    HTML+CSS+JS网页设计期末课程大作业——上海旅游景点(10页)web前端开发技术 web课程设计 网页规划与设计
    Pod详解
    【R语言文本挖掘】:情感分析与词云图绘制
  • 原文地址:https://blog.csdn.net/qq_46077249/article/details/133296539