dff45ef014
One convert step can be eliminated, which should help with performance. Change-Id: I860c90fec7f178b456b942d8ad4e4ec5d0412e05 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175467 Reviewed-by: Justin Luth <jluth@mail.com> Tested-by: Jenkins Reviewed-by: László Németh <nemeth@numbertext.org>
44 lines
1.8 KiB
Python
Executable file
44 lines
1.8 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# Diffs two PDF pages: a reference and our own output. Red output means some to fix: the amount of
|
|
# red is meant to reduce as fixing progresses. Sample usage:
|
|
#
|
|
# bin/diff-pdf-page.py reference.pdf test.pdf diff.png
|
|
#
|
|
# using the ImageMagick tooling
|
|
|
|
import argparse
|
|
import tempfile
|
|
import subprocess
|
|
|
|
def run(argv):
|
|
print(" ".join(argv))
|
|
subprocess.run(argv, check=True)
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser(description="Diffs two PDF pages, first is painted red instead of black, the second is painted on top of the first.")
|
|
parser.add_argument("-d", "--density", default="384")
|
|
parser.add_argument("-p", "--page", default="0")
|
|
parser.add_argument("a_pdf")
|
|
parser.add_argument("b_pdf")
|
|
parser.add_argument("diff_png")
|
|
args = parser.parse_args()
|
|
|
|
CONVERT_CMD="convert" # use "magick" if Windows has installed ImageMagick and GhostScript
|
|
|
|
a_png = tempfile.NamedTemporaryFile(suffix=".png")
|
|
a_pdf = args.a_pdf + "[" + args.page + "]"
|
|
run([CONVERT_CMD, "-density", args.density, a_pdf, "-colorspace", "RGB", "-transparent", "white", "-fuzz", "95%", "-fill", "red", "-opaque", "black", a_png.name])
|
|
b_png = tempfile.NamedTemporaryFile(suffix=".png")
|
|
b_pdf = args.b_pdf + "[" + args.page + "]"
|
|
run([CONVERT_CMD, "-density", args.density, b_pdf, "-colorspace", "RGB", "-transparent", "white", b_png.name])
|
|
run([CONVERT_CMD, a_png.name, b_png.name, "-composite", "-background", "white", "-flatten", args.diff_png])
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|
|
# vim:set shiftwidth=4 softtabstop=4 expandtab:
|