From daca77cc1b8478f63165e2a939587d49195726ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Sun, 17 Mar 2019 16:37:47 +0100 Subject: [PATCH] Strip the thumbnails --- src/paperless_tesseract/parsers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/paperless_tesseract/parsers.py b/src/paperless_tesseract/parsers.py index c2db5a056..fd7077834 100644 --- a/src/paperless_tesseract/parsers.py +++ b/src/paperless_tesseract/parsers.py @@ -53,6 +53,7 @@ class RasterisedDocumentParser(DocumentParser): self.CONVERT, "-scale", "500x5000", "-alpha", "remove", + "-strip", "-trim", "{}[0]".format(self.document_path), out_path ) @@ -77,6 +78,7 @@ class RasterisedDocumentParser(DocumentParser): self.CONVERT, "-scale", "500x5000", "-alpha", "remove", + "-strip", "-trim", gs_out_path, out_path )