Java Html2Image 实现html转图片功能

Java Html2Image 实现html转图片功能

//java Html2Image 实现html转图片功能 

// html2image
  HtmlImageGenerator imageGenerator = new HtmlImageGenerator();

   String htmlstr = "<table width='654' cellpadding='0' cellspacing='0' bordercolor='#FFFFFF'><tr><td><img       src='http://XXX/images/mdl.jpg'/></td><td><img src='http://XXX/images/mdl.jpg'/></td><td><img src='http://XXX/images/mdl.jpg'/></td></tr><tr><td><img src='http://XXX/images/mdl.jpg'/></td><td><img src='http://XXX/images/mdl.jpg'/></td><td><img src='http://XXX/images/mdl.jpg'/></td></tr><tr><td><img src='http://XXX/images/mdl.jpg'/></td><td><img src='http://XXX/images/mdl.jpg'/></td><td><img src='http://XXX/images/mdl.jpg'/></td></tr><tr><td><img src='http://XXX/mdl.jpg'/></td></tr></table>";

  imageGenerator.loadHtml(htmlstr);

  imageGenerator.getBufferedImage();

  imageGenerator.saveAsImage("d:/hello-world.png");

  imageGenerator.saveAsHtmlWithMap("hello-world.html", "hello-world.png");
final Html2Image html2Image = Html2Image.fromURL(new URL("http://www.qq.com/"),null);
      html2Image.getImageRenderer().saveImage("d:/1.png"); 
        <dependency>
            <groupId>gui.ava</groupId>
            <artifactId>html2image</artifactId>
            <version>0.9</version>
        </ dependency>
HtmlImageGenerator imageGenerator = new HtmlImageGenerator();
  String htmlstr = "<table style=\"width: 700px;font-size:16px;font-family: 'Microsoft YaHei';\" cellpadding=\"0\" cellspacing=\"0\">\n" +
					"    <tr >\n" +
					"      <th  style=\"background-color: #f2f2f2;height: 30px;width:  700px; border:1px solid #e6e6e6;border-top:none;text-align: center;color: #333333;\" colspan=\"2\">收据</th>\n" +
					"    </tr>\n" +
					"    <tr style=\"width:  700px;\">\n" +
					"      <td style=\"border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;height: 30px;\" >日期</td>\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")+"</td>\n" +
					"    </tr>\n" +
					"    <tr style=\"width:  700px;\">\n" +
					"      <td  style=\"border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;height: 30px;\">交易编号</td>\n" +
					"      <td  style=\"border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;border-left: 0px;height: 30px;\">"+saleOrder.getOrderCode()+"</td>\n" +
					"    </tr>\n" +
					"    <tr style=\"width:  700px;\">\n" +
					"      <td  style=\"border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;height: 30px;\">交易类型</td>\n" +
					"      <td  style=\"border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;border-left: 0px;height: 30px;\">捐赠</td>\n" +
					"    </tr>\n" +
					"    <tr style=\"width:  700px;\">\n" +
					"      <td  style=\"border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;height: 30px;\">交易金额</td>\n" +
					"      <td  style=\"border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;border-left: 0px;height: 30px;\">"+saleOrder.getProductPrice()+"</td>\n" +
					"    </tr>\n" +
					"   <tr style=\"width:  700px;\">\n" +
					"      <td  style=\"border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;height: 30px;\">付款人</td>\n" +
					"      <td  style=\"border:1px solid #e6e6e6;border-top:none;text-align: center;color: #666666;border-left: 0px;height: 30px;\">"+saleOrder.getUserName()+"</td>\n" +
					"    </tr>" +
					"</table>";
			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();
					}
				}
			}


// 重新设置画布背景颜色
public BufferedImage getGrayPicture(BufferedImage originalImage)
	{
		BufferedImage grayPicture;
		int imageWidth = originalImage.getWidth();
		int imageHeight = originalImage.getHeight();
 
		grayPicture = new BufferedImage(imageWidth, imageHeight,
				BufferedImage.TYPE_INT_RGB);
		ColorConvertOp cco = new ColorConvertOp(ColorSpace
				.getInstance(ColorSpace.CS_GRAY), null);
		cco.filter(originalImage, grayPicture);
		return grayPicture;
	}

html2image api介绍

HtmlImageGenerator Methods

loadUrl(url) - Loads HTML from URL object or URL string. (从url载入html)
loadHtml(html) - Loads HTML source. (载入本地html)
saveAsImage(file) - Save loaded HTML as image. (以图片形式保存html)
saveAsHtmlWithMap(file, imageUrl) - Creates an HTML file containing client-side image-map generated from HTML’s links. (创建一个HTML文件包含客户端image-map)
getLinks() - List all links in the HTML document and their corresponding href, target, title, position and dimension. (列出所有在HTML文档的链接和相应href、目标、头衔、位置和尺寸)
getBufferedImage() - Get AWT buffered image of the HTML. (获得awt,html缓冲后的图片)
getLinksMapMarkup(mapName) - Get HTML snippet of the client-side image-map
generated from the links. (HTML代码段里获得的客户端image-map <地图>产生的链接)
get/setOrientation(orientation) - Get/Set document orientation (left-to-right or right-to-left). (get/set文本定位)
get/setSize(dimension) - Get/Set size of the generated image. (设置生成图片大小)

loadUrl(url)  (从url载入html)
loadHtml(html) (载入本地html)
saveAsImage(file) (以图片形式保存html)
saveAsHtmlWithMap(file, imageUrl) (创建一个HTML文件包含客户端image-map)
getLinks()(列出所有在HTML文档的链接和相应href、目标、头衔、位置和尺寸)
getBufferedImage() (获得awt,html缓冲后的图片)
getLinksMapMarkup(mapName) (HTML代码段里获得的客户端image-map <地图>产生的链接)
get/setOrientation(orientation) (get/set文本定位)
get/setSize(dimension)  (设置生成图片大小)
  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值