未找到图像时,未使用iText PDF生成Pdf

时间:2014-03-18 10:50:45

标签: java itext

在所述路径上找到图像时,代码运行良好。

代码:

    ...
    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 属性不起作用。可以做些什么?

0 个答案:

没有答案