浏览代码

Bugzilla 50986: Fixed an issue where invalid PDF page content was generated due to incorrect ET/EMC sequences.

Thanks to Martin Koegler.


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1088231 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_1rc1old
Andreas L. Delmelle 13 年前
父节点
当前提交
2cab35675d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/java/org/apache/fop/render/pdf/PDFContentGenerator.java

+ 1
- 1
src/java/org/apache/fop/render/pdf/PDFContentGenerator.java 查看文件

@@ -270,10 +270,10 @@ public class PDFContentGenerator {
/** Indicates the end of a text object. */
protected void endTextObject() {
if (textutil.isInTextObject()) {
textutil.endTextObject();
if (this.inMarkedContentSequence) {
endMarkedContentSequence();
}
textutil.endTextObject();
}
}


正在加载...
取消
保存