iText PDF图像部分显示

时间:2013-07-12 22:28:18

标签: itext

当我通过Java代码访问时,我的PDF(iText)中的图像无法正确显示。 它部分显示图像的前半部分正确显示,剩下的一半显示图像顶部有很多行。 (当其他文本快速显示时,图像似乎下载速度非常慢。)

我使用iTextPdf版本5.4.0 jar文件,我通过URL访问图像(获取图像URL) 在我的java代码中。

请让我知道为什么会这样。如果您需要任何其他信息,请告诉我,我可以提供。

提前感谢您的帮助。

2 个答案:

答案 0 :(得分:0)

我也面临同样的问题,后来我们解决了。请找到以下代码,希望它对您有所帮助。

HTML文件


<html>
<body>
<font color="green">Test</font><br/>
<table>
<tr><td><img src="Desert.jpg" height="300" width="300"/></td></tr>
</table>
</body>
</html>

Java文件


class PageWithRectangle extends PdfPageEventHelper
 { 
      public void onEndPage(PdfWriter writer, Document document)
      { 
           PdfContentByte cb = writer.getDirectContent(); 
           Rectangle pageSize = writer.getPageSize(); 
           cb.rectangle(pageSize.getLeft() + 3, pageSize.getBottom() + 3, 
           pageSize.getWidth() - 6, pageSize.getHeight() - 6); 
           cb.stroke(); 
      } 
}
public class pdfTest {
     private static String getUrlSource(String url) throws IOException {
         URL webpage = new URL(url);
         URLConnection yc = webpage.openConnection();
         BufferedReader in = new BufferedReader(new InputStreamReader(
                 yc.getInputStream(), "UTF-8"));
         String inputLine;

         StringBuilder a = new StringBuilder();
         while ((inputLine = in.readLine()) != null)
         {
             a.append(inputLine);
             System.out.println(inputLine);
          }
         in.close();
         return a.toString();
     }
    public static void main(String[] args) {
        try {
            File baseDir = new File(".");
            File outDir = new File(baseDir, "out");
            outDir.mkdirs();
            String k = getUrlSource("file:\\C:\\test.html");
            OutputStream file = new FileOutputStream(new File(outDir+"/Test.pdf"));
            Document document = new Document();
            PdfWriter writer = PdfWriter.getInstance(document, file);
            writer.setPageEvent(new PageWithRectangle()); 
            document.open();
            HTMLWorker htmlWorker = new HTMLWorker(document);
            htmlWorker.parse(new StringReader(k));
            document.close();
            file.close();
            System.out.println("\nSuccess");
        } catch (Exception e) {

            e.printStackTrace();
        }
     }

    }

我的旧HTML代码(通过java生成错误的pdf)

<html>
<body>
<font color="green">Test</font><br/>
<img src="Desert.jpg" height="300" width="300"/>
</body>
</html>

解决方案:在表格标签下提供图片标记

此致 普利文

答案 1 :(得分:0)

我也遇到过使用iText 5.5.5的问题,并发现了影响GIF的问题,并设置了alpha通道。删除alpha或尝试保存为jpg。这对我有用。