mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
try to run convert, but fall back on gs if needed
This commit is contained in:
parent
ea282c22ba
commit
29b0886950
@ -46,11 +46,25 @@ class RasterisedDocumentParser(DocumentParser):
|
||||
"""
|
||||
|
||||
out_path = os.path.join(self.tempdir, "convert.png")
|
||||
gs_out_path = os.path.join(self.tempdir, "gs_out.png")
|
||||
|
||||
# Extract the first PDF page as a PNG using Ghostscript
|
||||
# https://github.com/danielquinn/paperless/issues/447
|
||||
# call gs first
|
||||
# Run convert to get a decent thumbnail
|
||||
try:
|
||||
run_convert(
|
||||
self.CONVERT,
|
||||
"-scale", "500x5000",
|
||||
"-alpha", "remove",
|
||||
"{}[0]".format(self.document_path),
|
||||
out_path
|
||||
)
|
||||
except ParseError:
|
||||
# if convert fails, fall back to extracting
|
||||
# the first PDF page as a PNG using Ghostscript
|
||||
self.log(
|
||||
"warning",
|
||||
"Thumbnail generation with ImageMagick failed, "
|
||||
"falling back to Ghostscript."
|
||||
)
|
||||
gs_out_path = os.path.join(self.tempdir, "gs_out.png")
|
||||
cmd = [self.GHOSTSCRIPT,
|
||||
"-q",
|
||||
"-sDEVICE=pngalpha",
|
||||
|
Loading…
x
Reference in New Issue
Block a user