在所述路径上找到图像时,代码运行良好。
代码:
...
Document document=new Document();
PdfWriter.getInstance(document,new FileOutputStream("D:/pdfSample.pdf"));
document.open();
String text="<html><body>hello<img src='http://pathOfImage/Image.gif' alt='' /></body></html>";
HTMLWorker htmlWorker = new HTMLWorker(document);
htmlWorker.parse(new StringReader(text));
document.close();
System.out.println( "PDF Created!" );
但是如果找不到图像,则不会生成pdf,即图像 alt 属性不起作用。可以做些什么?