当前位置: 首页 > 工具软件 > Html2Image > 使用案例 >

java 使用Html2Image将html转图片

孟意致
2023-12-01

html2image

0.9

cn.hutool

hutool-all

5.0.6

转换代码

HtmlImageGenerator imageGenerator = new HtmlImageGenerator();

String htmlstr = “<table style=“width: 700px;font-size:16px;font-family: ‘Microsoft YaHei’;” cellpadding=“0” cellspacing=“0”>\n” +

" \n" +

" <th style=“background-color: #f2f2f2;height: 30px;width: 700px; border:1px solid #e6e6e6;b 《一线大厂Java面试题解析+后端开发学习笔记+最新架构讲解视频+实战项目源码讲义》无偿开源 威信搜索公众号【编程进阶路】 order-top:none;text-align: center;color: #333333;” colspan=“2”>收据\n" +

" \n" +

" <tr style=“width: 700px;”>\n" +

" <td style=“border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;height: 30px;” >日期\n" +

" <td style=“border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;border-left: 0px;height: 30px;”>“+DateUtil.format(saleOrder.getCreateTime(), “yyyy-MM-dd HH:mm:ss”)+”\n" +

" \n" +

" <tr style=“width: 700px;”>\n" +

" <td style=“border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;height: 30px;”>交易编号\n" +

" <td style=“border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;border-left: 0px;height: 30px;”>“+saleOrder.getOrderCode()+”\n" +

" \n" +

" <tr style=“width: 700px;”>\n" +

" <td style=“border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;height: 30px;”>交易类型\n" +

" <td style=“border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;border-left: 0px;height: 30px;”>捐赠\n" +

" \n" +

" <tr style=“width: 700px;”>\n" +

" <td style=“border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;height: 30px;”>交易金额\n" +

" <td style=“border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;border-left: 0px;height: 30px;”>“+saleOrder.getProductPrice()+”\n" +

" \n" +

" <tr style=“width: 700px;”>\n" +

" <td style=“border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;height: 30px;”>付款人\n" +

" <td style=“border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;border-left: 0px;height: 30px;”>“+saleOrder.getUserName()+”\n" +

" " +

“”;

imageGenerator.loadHtml(htmlstr);

BufferedImage bufferedImage = getGrayPicture(imageGenerator.getBufferedImage());

ByteArrayOutputStream outputStream = new ByteArrayOutputStream();

try {

ImageIO.write(bufferedImage, “jpg”, outputStream);

String base64Img = Base64.encodeBase64String(outputStream.toByteArray());

String res = “data:image/jpg;base64,” + base64Img.toString();

modelAndView.addObject(“imageres”, res);

} catch (IOException e) {

e.printStackTrace();

}finally {

if(outputStream != null){

try {

outputStream.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

这个是用于重新设置画布背景颜色的

 类似资料: