diff --git a/src/paperless_tesseract/parsers.py b/src/paperless_tesseract/parsers.py index fd7077834..eeca540b1 100644 --- a/src/paperless_tesseract/parsers.py +++ b/src/paperless_tesseract/parsers.py @@ -51,7 +51,8 @@ def get_thumbnail(self): try: run_convert( self.CONVERT, - "-scale", "500x5000", + "-density", "300", + "-scale", "500x5000>", "-alpha", "remove", "-strip", "-trim", "{}[0]".format(self.document_path), @@ -76,7 +77,8 @@ def get_thumbnail(self): # then run convert on the output from gs run_convert( self.CONVERT, - "-scale", "500x5000", + "-density", "300", + "-scale", "500x5000>", "-alpha", "remove", "-strip", "-trim", gs_out_path,