Last active
September 23, 2018 08:53
-
-
Save a4099181/86224f1c1e3cb44f666266aa996d32e4 to your computer and use it in GitHub Desktop.
Converts PDF into PNG for use as a chart in LES Saab 340A at X-Plane. Requirements: ImageMagick and Ghostscript must be in %PATH%. Tested on Windows 10 1803 with ImageMagick 7.0.7-7 Q16 (64-bit) and Ghostscript 9.22.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FOR %I IN (*.pdf) DO magick ^ | |
-density 300 "%I[0]" -trim -units pixelsperinch ^ | |
-density 300 -resize "1304x1304^" -rotate "-90>" ^ | |
-colorspace gray -background white -flatten ^ | |
-gravity west -extent "2048x2048" %~nI.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment