[ 
https://issues.apache.org/jira/browse/PDFBOX-3999?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16446236#comment-16446236
 ] 

ASF subversion and git services commented on PDFBOX-3999:
---------------------------------------------------------

Commit 1829674 from [~tilman] in branch 'pdfbox/trunk'
[ https://svn.apache.org/r1829674 ]

PDFBOX-3999: check count of structure elements in /K tree

> Merge failed to clone tags
> --------------------------
>
>                 Key: PDFBOX-3999
>                 URL: https://issues.apache.org/jira/browse/PDFBOX-3999
>             Project: PDFBox
>          Issue Type: Bug
>          Components: Utilities
>    Affects Versions: 2.0.8
>            Reporter: Dave Hill
>            Assignee: Tilman Hausherr
>            Priority: Critical
>              Labels: StructureTree, merge
>             Fix For: 2.0.10, 3.0.0 PDFBox
>
>         Attachments: GeneralForbearance.pdf, GovFormPreFlattened.pdf, 
> pdfbox.patch
>
>
> After merging two tagged documents, closing the source document causes the 
> destination document to be closed, which prevents it from being saved. The 
> following code demonstrates the bug with the attached flattened government 
> PDF file. The original is available 
> [here|https://studentloans.gov/myDirectLoan/downloadForm.action?searchType=library&shortName=general&localeCode=en-us]
>  if you need it.
> {code}
> @Test
> public void testMerge() throws Exception {
>     PDFMergerUtility pdfMergerUtility = new PDFMergerUtility();
>     PDDocument src = PDDocument.load(new File("GovFormPreFlattened.pdf"));
>     PDDocument dest = PDDocument.load(new File("GovFormPreFlattened.pdf"));
>     pdfMergerUtility.appendDocument(dest, src);
>     src.close(); //if we don't close the src then we don't have an error
>     dest.save(File.createTempFile("MergeIssue",".PDF"));
>     dest.close();
> }
> {code}
> The issue is resolved with the attached patch.
> Also I removed the "if (mergeStructTree)" is because mergeStructTree is 
> always true here because this code is already inside an "if 
> (mergeStructTree)".



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to