【问题标题】:IText Image Set Absolute PositionIText 图像设置绝对位置
【发布时间】:2015-04-29 18:35:04
【问题描述】:

我需要使用 iText 库将 PDF 中的图像放置在与 Adob​​e Acrobat 的以下屏幕截图所示完全相同的位置。我需要像这样将什么值传递给图像 setabsolute 位置:

        Image image = Image.getInstance(stream.toByteArray());
        image.scaleAbsolute(150f, 150f);
        image.setAbsolutePosition(???f, ???f);

        PdfContentByte overContent = stamper.getOverContent(1);
        overContent.addImage(image);
        stamper.setFormFlattening(true);
        stamper.close();

我正在尝试所有值,并且图像在输出文件中跳跃。我应该使用什么值?我还包含了 getFieldPosition() 输出的屏幕截图。

【问题讨论】:

  • 你对这个问题的答案还有兴趣吗?

标签: java android itext


【解决方案1】:

如果您不知道如何将 pt 转换为 x,y 位置,也许这​​会有所帮助:

要从像素到 Em,只需除以 16

使用 Reed Design 的表格,该表格列出了从点到像素的转换 到 Em 到 %。这是一个近似值,取决于字体、浏览器 和操作系统,但这是一个很好的起点。

https://answers.yahoo.com/question/index?qid=20070723201114AAzsYjC

否则,我会为图像执行类似于 yo 的操作:

    /**
     * Adds an image to the PDF
     * @param imageData The data for the image to add
     * @param page The page number of where to add the photo
     * @param xPos The x coordinate of where to put the image. Note that 0 is the left of the page
     * @param yPos The y coordinate of where to put the image. Note that 0 is the top of the page. This is
     * different than the addText function for some reason.
     * @param layer
     * @throws Exception If there was an error adding the image to the PDF
     */
    public void addImageToPDF(float xPos, float yPos, byte[] imageData, int page,  Layer layer) throws Exception
    {
        PdfContentByte content = getPdfContentByte(page, layer);
        Image img = Image.getInstance(imageData);
        img.setAbsolutePosition(xPos, yPos);
        content.addImage(img);
    }


    /**
     * Gets a PdfContentByte. This is used to make changes to the PDF
     * @param page The page number that is to be modified
     * @param layer The layer that is to be modified
     * @return A PdfContentByte that can be used to modify the PDF
     */
    private PdfContentByte getPdfContentByte(int page, Layer layer)
    {
        return layer == Layer.OVER ? stamper.getOverContent(page) : stamper.getUnderContent(page);
    }

Layer 是一个简单的枚举,用于确定 PDF 的哪一层:

    /**
     * Represents a layer of the PDF relative to the original file. For example,
     * if an operation requires a Layer argument, OVER will make the changes ontop
     * of the original PDF. UNDER will make the changes under the original PDF. So
     * if there is text in the original PDF and you choose UNDER, the changes you make
     * may be covered up by the original text. If you choose OVER, you changes will be
     * ontop of whatever was in the original PDF
     */
    public enum Layer{
        /**
         * Represents ontop of the original PDF
         */
        OVER,

        /**
         * Represents under the original PDF
         */
        UNDER
    }

【讨论】:

  • 感谢您的有用回复。对于这个文档,我没有文档的实例,而是有一个 PdfStamper 的实例。我得到一个表单中所有字段(AcroFields)的引用。其中一个字段是占位符文本框,我想做的是将图像添加到该文本框的确切位置,然后删除该文本框。我在这方面取得了很大进展,我将继续努力。谢谢
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2016-05-04
  • 2011-03-18
  • 2013-05-27
  • 1970-01-01
  • 1970-01-01
  • 2019-05-09
相关资源
最近更新 更多