在maven项目中没有使用Flying Saucer API显示图像

时间:2017-12-18 12:49:45

标签: java maven pdf flying-saucer xhtmlrenderer

我正在使用Flying Saucer APIiText PDF将HTML内容转换为PDF格式。

这需要以下库:

  • 芯renderer.jar
  • 的iText-2.0.8.jar

由于该库不支持input type checkbox,因此我使用checkbox image以PDF格式呈现。

但是,图像不会出现。它没有显示任何内容。

flyingsaucer-R8.zip中的资源。

示例

 StringBuilder myHtml = new StringBuilder(); 
 myHtml.append("<html><img src=\"images/invoice-bg.jpg\"></img></html>");
// if you have html source in hand, use it to generate document object
Document document = XMLResource.load( new ByteArrayInputStream( 
myHtml.toString().getBytes() ) ).getDocument();

ITextRenderer renderer = new ITextRenderer();
renderer.setDocument( document, null );

renderer.layout();

String fileNameWithPath = "D:/Temp/PDF-XhtmlRendered.pdf";
FileOutputStream fos = new FileOutputStream( fileNameWithPath );
renderer.createPDF( fos );
fos.close();
System.out.println( "File 1: '" + fileNameWithPath + "' created." );

3 个答案:

答案 0 :(得分:0)

您应该使用最新版本的Flying-Saucer(目前为9.1.9)。您可以在mvnrepository上找到。

您还应该检查文件images/invoice-bg.jpg是否存在,并且可以从项目的根目录中访问。

如果您的路径正确,生成的PDF将包含您的图片。

答案 1 :(得分:0)

如果您使用具有相对文件路径的资源,则需要在setDocument调用中指定基本网址。

答案 2 :(得分:0)

给出图像的完整路径,然后它就可以了。

我通过直接点击以下网址进行了检查:

http://localhost:8001/userApi/resources/images/invoice-bg.jpg

如果遇到类似的问题,这可能有助于某人 -

 StringBuilder myHtml = new StringBuilder(); 
 myHtml.append("<html><img 
 src=\""+serverName+"/userApi/resources/images/invoice-bg.jpg\" 
 style=\"margin-top:-4px;\" ></img></html>");
// if you have html source in hand, use it to generate document object
Document document = XMLResource.load( new ByteArrayInputStream( 
myHtml.toString().getBytes() ) ).getDocument();

ITextRenderer renderer = new ITextRenderer();
renderer.setDocument( document, null );

renderer.layout();

String fileNameWithPath = "D:/Temp/PDF-XhtmlRendered.pdf";
FileOutputStream fos = new FileOutputStream( fileNameWithPath );
renderer.createPDF( fos );
fos.close();
System.out.println( "File 1: '" + fileNameWithPath + "' created." );