我成功将.html转换为pdf文件。在那个pdf文件中,“image”无法写入。出了什么问题。我使用了以下jar文件:
以下是我的代码:
// step 1
Document document = new Document();
// step 2
PdfWriter writer = PdfWriter.getInstance(document,
new FileOutputStream(sdPath + "ExcelToPdf.pdf"));
// step 3
document.open();
// step 4
XMLWorkerHelper.getInstance().parseXHtml(writer, document,
new FileInputStream(sdPath + "check.html"));
// step 5
document.close();
我得到的pdf文件包含文字但不包含图片..那么如何将图像从html文件写入pdf ...我是否需要更换任何jar文件?有什么想法吗?