try to run convert, but fall back on gs if needed

This commit is contained in:
JensPfeifle 2019-02-03 18:19:06 +01:00 committed by jenspfeifle
parent ea282c22ba
commit 29b0886950

View File

@ -46,25 +46,39 @@ class RasterisedDocumentParser(DocumentParser):
""" """
out_path = os.path.join(self.tempdir, "convert.png") 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 # Run convert to get a decent thumbnail
# https://github.com/danielquinn/paperless/issues/447 try:
# call gs first run_convert(
cmd = [self.GHOSTSCRIPT, self.CONVERT,
"-q", "-scale", "500x5000",
"-sDEVICE=pngalpha", "-alpha", "remove",
"-o", gs_out_path, "{}[0]".format(self.document_path),
self.document_path] out_path
if not subprocess.Popen(cmd).wait() == 0: )
raise ParseError("Thumbnail (gs) failed at {}".format(cmd)) except ParseError:
# then run convert on the output from gs # if convert fails, fall back to extracting
run_convert( # the first PDF page as a PNG using Ghostscript
self.CONVERT, self.log(
"-scale", "500x5000", "warning",
"-alpha", "remove", "Thumbnail generation with ImageMagick failed, "
gs_out_path, "falling back to Ghostscript."
out_path )
gs_out_path = os.path.join(self.tempdir, "gs_out.png")
cmd = [self.GHOSTSCRIPT,
"-q",
"-sDEVICE=pngalpha",
"-o", gs_out_path,
self.document_path]
if not subprocess.Popen(cmd).wait() == 0:
raise ParseError("Thumbnail (gs) failed at {}".format(cmd))
# then run convert on the output from gs
run_convert(
self.CONVERT,
"-scale", "500x5000",
"-alpha", "remove",
gs_out_path,
out_path
) )
return out_path return out_path