php stream_select w3c,使用flying-saucer 实现 html转pdf实现input框select,textarea checkbox等的显示...
com.itextpdf
itextpdf
${itextpdf.version}
com.itextpdf
itext-asian
${itext.asian.version}
中文顯示問題解決了,當時碰到了打印表單中input框等不顯示的問題。
今天換了個方案使用flying-saucer 實現html轉pdf
org.xhtmlrenderer
flying-saucer-pdf-itext5
9.1.1
實現代碼如下:
public void html2pdf(String html, File file, String fontDir) throws I18NIllegalArgumentException {
try (OutputStream os = new FileOutputStream(file); ){
ITextRenderer renderer = new ITextRenderer();
ITextFontResolver fontResolver = (ITextFontResolver) renderer.getSharedContext().getFontResolver();
//添加字體庫 begin
File f = new File(fontDir);
if (f.isDirectory()) {
File[] files = f.listFiles(new FilenameFilter() {
@Override
public boolean accept(File dir, String name) {
String lower = name.toLowerCase();
return lower.endsWith(".otf") || lower.endsWith(".ttf") || lower.endsWith(".ttc");
}
});
for (int i = 0; i < files.length; i++) {
fontResolver.addFont(files[i].getAbsolutePath(), BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
}
}
//添加字體庫end
renderer.setDocumentFromString(html);
renderer.layout();
renderer.createPDF(os);
} catch (Exception e) {
throw new I18NIllegalArgumentException(e);
}
}
網上查的都是添加字體的方法都是這樣實現的:
ITextFontResolver fontResolver = renderer.getFontResolver();
fontResolver.addFont("C:/Windows/Fonts/simsun.ttc", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
fontResolver.addFont("C:/Windows/Fonts/simhei.ttf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
fontResolver.addFont("C:/Windows/Fonts/simkai.ttf", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
這樣實現有個缺陷:字體的路徑都是系統的目錄,不同系統(windows,Linux)字體目錄不同,對系統依賴太高。
為了解決這個問題:找到字體庫文件,復制到項目的目錄中,在代碼中直接遍歷這個目錄,添加所有的字體。
注意:頁面中字體不能使用中文,需要使用英文名稱,而且是大小寫敏感的!例如宋體的英文名稱是 SimSun(注意不是simsun!,首字母都是大寫的)
錯誤寫法:font-family:'宋體' 或者 ?font-family:'simsun' ?或者 ?font-family:?'微軟雅黑'
正確寫法:font-family:'SimSun' 或者?font-family:'SimHei'或者 ?font-family:? 'Microsoft YaHei'
另外: html的格式要求符合xml格式(即必須有結束標簽)
測試:
測試用html代碼:
我是標題*{font-family: 'SimSun';}
我是內容
asdfsdf今晚打老虎
運動睡覺
html瀏覽器顯示結果:
生成的pdf:
總結
以上是生活随笔為你收集整理的php stream_select w3c,使用flying-saucer 实现 html转pdf实现input框select,textarea checkbox等的显示...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: fgo服务器维护抽卡,FGO:抽卡概率是
- 下一篇: 《乐高EV3机器人搭建与编程》——2.5