0

我正在将 html 文档转换为 pdf 文档并使用 java 邮件发送。我想在 pdf 文档的顶部插入一个图像:

<img alt="Logo" class="logo" src="https://www.somesite.org/images/logo.png"/>

但它没有显示在 pdf 文档中。该链接工作正常,我在浏览器中尝试过。

当我在我的服务器上输入图像的绝对路径时,他找到了路径,但是电子邮件程序当然无法访问我们的服务器,除了我想使用的链接......

不能使用这样的链接吗?

编辑:

final DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
        documentBuilderFactory.setValidating(false);
        DocumentBuilder builder = documentBuilderFactory.newDocumentBuilder();
        builder.setEntityResolver(FSEntityResolver.instance());
        SimpleDateFormat dateFormat = new SimpleDateFormat("dd.MM.yyyy");

    String filename = wrapper.GetHtmlFilename(this.getClass().getName());
    String html = wrapper.GetHtmlFile(filename, "UTF-8");
    String result = wrapper.GetBody(html);

    document = builder.parse(new ByteArrayInputStream(result.getBytes("UTF-8")), "UTF-8");

    baos = new ByteArrayOutputStream();
    renderer = new ITextRenderer();

    renderer.setDocument(document, null);
    renderer.layout();
    renderer.createPDF(baos);
4

0 回答 0