From 03aaf575dc8c94877f528f59f2b2bc7fa26fbd64 Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Fri, 2 Dec 2016 16:26:34 -0800 Subject: [PATCH] v4.3.3 release notes, fix more gs 9.20 issues --- RELEASE_NOTES.rst | 6 ++++++ ocrmypdf/ghostscript.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst index d0955a6d..aee7d0fc 100644 --- a/RELEASE_NOTES.rst +++ b/RELEASE_NOTES.rst @@ -3,6 +3,12 @@ RELEASE NOTES OCRmyPDF uses `semantic versioning `_. +v4.3.3: +======= + +- Fix additional problems with PDF/A creation on Ghostscript 9.20 + + v4.3.2: ======= diff --git a/ocrmypdf/ghostscript.py b/ocrmypdf/ghostscript.py index fb58c9e6..cbf22ee8 100644 --- a/ocrmypdf/ghostscript.py +++ b/ocrmypdf/ghostscript.py @@ -56,7 +56,7 @@ def generate_pdfa(pdf_pages, output_file, threads=1): "-sProcessColorModel=DeviceRGB", "-dJPEGQ=95", "-dPDFA=2", - "-sPDFACompatibilityPolicy=1", + "-dPDFACompatibilityPolicy=1", "-sOutputFile=" + gs_pdf.name, ] args_gs.extend(pdf_pages)