使用 PDFBox 在 PDF 上绘制矢量图像

2022-09-03 15:57:44

我想用Apache PDFBox在PDF上绘制一个矢量图像。

这是我用来绘制常规图像的代码

PDPage page = (PDPage) document.getDocumentCatalog().getAllPages().get(1);
PDPageContentStream contentStream = new PDPageContentStream(document, page, true, true);

BufferedImage _prevImage = ImageIO.read(new FileInputStream("path/to/image.png"));
PDPixelMap prevImage = new PDPixelMap(document, _prevImage);
contentStream.drawXObject(prevImage, prevX, prevY, imageWidth, imageHeight);

如果我使用或图像而不是png,则生成的PDF文档已损坏。svgwmf

我希望图像成为矢量图像的主要原因是,使用PNG或JPG,图像看起来很可怕,我认为它以某种方式被压缩,所以它看起来很糟糕。对于矢量图像,这不应该发生(好吧,当我在Inkscape中将svg路径导出为PDF时,它不会发生,矢量路径被保留)。

有没有办法使用Apache PDFBox将svg或wmf(或其他矢量)绘制为PDF?

我目前正在使用PDFBox 1.8,如果这很重要的话。


答案 1

请参阅本 Jira 中吹捧的 pdfbox-graphics2d 库。

您可以通过BatikSalamander或其他方式将SVG绘制到类上,该类与iText的.有关示例,请参阅 GitHub 页面。PdfBoxGraphics2Dtemplate.createGraphics()

PDDocument document = ...;
PDPage page = ...; // page whereon to draw

String svgXML = "<svg>...</svg>";
double leftX = ...;
double bottomY = ...; // PDFBox coordinates are oriented bottom-up!

// I set these to the SVG size, which I calculated via Salamander.
// Maybe it doesn't matter, as long as the SVG fits on the graphic.
float graphicsWidth = ...;
float graphicsHeight = ...;

// Draw the SVG onto temporary graphics.
var graphics = new PdfBoxGraphics2D(document, graphicsWidth, graphicsHeight);
try {
    int x = 0;
    int y = 0;
    drawSVG(svg, graphics, x, y); // with Batik, Salamander, or whatever you like
} finally {
    graphics.dispose();
}

// Graphics are not visible till a PDFormXObject is added.
var xform = graphics.getXFormObject();

try (var contentWriter = new PDPageContentStream(document, page, AppendMode.APPEND, false)) { // false = don't compress
    // XForm objects have to be placed via transform,
    // since they cannot be placed via coordinates like images.
    var transform = AffineTransform.getTranslateInstance(leftX, bottomY);
    xform.setMatrix(transform);

    // Now the graphics become visible.
    contentWriter.drawForm(xform);
}

和。。。如果您还想将 SVG 图形缩放到 25% 的大小:

// Way 1: Scale the SVG beforehand
svgXML = String.format("<svg transform=\"scale(%f)\">%s</svg>", .25, svgXML);

// Way 2: Scale in the transform (before calling xform.setMatrix())
transform.concatenate(AffineTransform.getScaleInstance(.25, .25));

答案 2

我这样做,但不是直接的。首先,使用FOP librairy和Batik将PDF文档中的SVG文档转换为PDF文档。https://xmlgraphics.apache.org/fop/dev/design/svg.html

在第二次,您可以使用Pdfbox中的LayerUtility在PDXObjectForm中转换新的pdf文档。之后,只需要在最终的pdf文档中包含PDXObjectForm。


推荐