v4.3.3 release notes, fix more gs 9.20 issues

This commit is contained in:
James R. Barlow 2016-12-02 16:26:34 -08:00
parent de939951d4
commit 03aaf575dc
2 changed files with 7 additions and 1 deletions

View File

@ -3,6 +3,12 @@ RELEASE NOTES
OCRmyPDF uses `semantic versioning <http://semver.org/>`_. OCRmyPDF uses `semantic versioning <http://semver.org/>`_.
v4.3.3:
=======
- Fix additional problems with PDF/A creation on Ghostscript 9.20
v4.3.2: v4.3.2:
======= =======

View File

@ -56,7 +56,7 @@ def generate_pdfa(pdf_pages, output_file, threads=1):
"-sProcessColorModel=DeviceRGB", "-sProcessColorModel=DeviceRGB",
"-dJPEGQ=95", "-dJPEGQ=95",
"-dPDFA=2", "-dPDFA=2",
"-sPDFACompatibilityPolicy=1", "-dPDFACompatibilityPolicy=1",
"-sOutputFile=" + gs_pdf.name, "-sOutputFile=" + gs_pdf.name,
] ]
args_gs.extend(pdf_pages) args_gs.extend(pdf_pages)