HTML轉圖片或者HTML轉PDF
我使用的是wkhtmltoimage,和wkhtmltopdf實現的html轉換為圖片或者是PDF ,該程式是Python語言寫的,執行效果好,速度快並且穩定。
相關文件檢視:https://wkhtmltopdf.org/
相關命令檢視:http://blog.csdn.net/zhangkezhi_471885889/article/details/52184744
使用起來很簡單隻需要執行命令:./wkhtmltoimage http://www.csdn.net/ csdn.jpg 就能轉換為圖片。
同理:./wkhtmltopdf http://www.csdn.net/ csdn.pdf 這個命令就可以轉換為PDF。使用起來非常簡單。
產生亂碼的解決方案:解決中文不顯示或亂碼問題:需要字型檔案cjkuni-uming、smc、stix放入/usr/share/fonts目錄下
下載地址:http://download.csdn.net/download/li_cheng_liang/9916727
該軟體的下載地址:http://download.csdn.net/download/li_cheng_liang/9916740
這樣就證明轉換成功了
如果想通過程式呼叫只需要呼叫shell指令碼執行這個命令即可。
使用ITEXT進行將HTML轉換為PDF:
在伺服器端轉換通常用到的外掛是iText. 但是iText對css的支援不好,不過有一個對iText封裝後的開源外掛flying-saucer就可以解決這個問題。
目錄結構為:
這四個jar包是必須要的:
上面主要使用SIMSUN.TTC檔案就行(這個是電腦裡的宋體字形,用這個就可以解決中文不顯示的問題)
頁面使用的是jsp,在tomcat下面執行:
頁面:
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></meta> <title>HTML to PDF</title> <link href="http://localhost:8080/ssacWechat/assets/index.css" rel="stylesheet" type="text/css" /> </head> <body style = "font-family: SimSun;" > <h1>HTML to PDF</h1> <p> <span class="itext">itext</span> 2.0.8 <span class="description">converting HTML to PDF</span> </p> <table> <tr> <th class="label">Title</th> <td>iText - Java HTML to PDF</td> </tr> <tr> <th>URL</th> <td>http://hmkcode.com/itext-html-to-pdf-using-java</td> </tr> <tr> <th>測試1</th> <td>${state}</td> </tr> <tr> <th>測試2</th> <td>${isCanLottery }</td> </tr> <tr> <th>測試3</th> <td>${test }</td> </tr> <tr> <th>圖片</th> <td><img src="http://localhost:8080/ssacWechat/assets/1.jpg" height="100px" width="100px"/></td> </tr> </table> </body> </html>
裡面的三項為el表示式傳遞過來的 一個是int型別,一個是空,另一個是中文
PDF效果圖:
Java程式碼實現:
package com.lcl;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import org.xhtmlrenderer.pdf.ITextFontResolver;
import org.xhtmlrenderer.pdf.ITextRenderer;
import com.lowagie.text.pdf.BaseFont;
public class HtmlToPDFTest {
public static void main(String[] args) throws Exception {
parseHtmlToPdf();
}
/**
* 使用的jar包:itext-2.0.8.jar core-render.jar
*
* @throws Exception
*/
public static void parseHtmlToPdf() throws Exception {
// step 1
String outputFile = "D:/htmlToPdf2.pdf";
String inputFile = "D:/index.html";
String url = new File(inputFile).toURI().toURL().toString();
System.out.println(url);
url = "http://localhost:8080/ssacWechat/policyChange/index.ps";
// step 2
OutputStream os = new FileOutputStream(outputFile);
org.xhtmlrenderer.pdf.ITextRenderer renderer = new ITextRenderer();
renderer.setDocument(url);
// step 3 解決中文支援
ITextFontResolver fontResolver = renderer.getFontResolver();
//支援中文
/*
if (System.getProperty("os.name").contains("Window")) {
fontResolver.addFont("C:/Windows/Fonts/simsun.ttc", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
} else {
fontResolver.addFont("/usr/share/fonts/win/simsun.ttc", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
}
*/
fontResolver.addFont("/SIMSUN.TTC", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
// fontResolver.addFont("STSong-Light", "UniGB-UCS2-H",BaseFont.NOT_EMBEDDED);
// fontResolver.addFont("C:/Windows/Fonts/simsun.ttc", BaseFont.HELVETICA_BOLDOBLIQUE, BaseFont.NOT_EMBEDDED);
// 解決圖片的相對路徑問題
// renderer.getSharedContext().setBaseURL("file:/F:/teste/html/");
renderer.layout();
renderer.createPDF(os);
os.close();
}
}
但是這樣使用用一下嚴格的要求:
1、
最重要的一點是 html 一定要設定字型
<body style = "font-family: SimSun;" >
2、
對html的規範要求極高,例如:頁面中<mate></mate>必須閉合,必須: <br />
ITEXT解決中文亂碼問題:
有三種方式:
1、使用iTextAsian.jar中的字型
BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",BaseFont.NOT_EMBEDDED);
2、使用Windows系統字型(TrueType)
BaseFont.createFont("C:/WINDOWS/Fonts/SIMSUN.TTC", BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED);
3、使用資源字型(ClassPath)
BaseFont.createFont("/SIMSUN.TTC", BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED);