We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I recently tried the external pdf document api and it appears that it adds an empty page before.
let document = PDFDocument(format: format) // meta data document.info.title = "Title" document.info.subject = "Subject" if let bundleName = Bundle.main.infoDictionary!["CFBundleName"] as? String { document.info.author = bundleName } if let externalReportURL = Bundle.main.url(forResource: "Cover", withExtension: "pdf") { let coverDocument = PDFExternalDocument(url:externalReportURL, pages: 1) document.add(externalDocument: coverDocument) } let generator = PDFGenerator(document: document) try? generator.generateURL(filename: "report.pdf")
The text was updated successfully, but these errors were encountered:
Hi there,
can you please take a look at the branch feature/247-fixing-empty-external-page and let me know if it resolves your issue.
feature/247-fixing-empty-external-page
Sorry, something went wrong.
#247, #248: Fixing empty external page
b405af6
Fixed in branch develop
develop
philprime
Successfully merging a pull request may close this issue.
I recently tried the external pdf document api and it appears that it adds an empty page before.
The text was updated successfully, but these errors were encountered: