PDFBox:PDPageContentStream 的附加模式行为不当

PDFBox : PDPageContentStream's append mode misbehaving

我正在其中一个 PDF 页面上绘制图像。当我使用 PDPageContentStream stream = new PDPageContentStream(doc, page); 绘制图像时,一切正常。请参见下图。

但是当我使用构造函数 PDPageContentStream(doc, page, true, true); 创建 PDPageContentStream 并绘制图像时,新添加的图像倒置了..

不明白这里出了什么问题..

PS。我正在使用库 PdfBox-Android

使用具有第五个参数的构造函数,以便重置图形上下文。

public PDPageContentStream(PDDocument document, PDPage sourcePage, boolean appendContent, 
                            boolean compress, boolean resetContext) throws IOException

或者,通过调用

保存和恢复第一个内容流中的图形状态
saveGraphicsState();
// ...
restoreGraphicsState();