Page dimensions and saving in pdf

Feature requests for future versions can be voiced here
amyren
Posts: 352
Joined: Thu May 02, 2019 11:53 am

Re: Page dimensions and saving in pdf

Post by amyren »

Found there is a good description online for imagemagick at https://legacy.imagemagick.org/Usage/
It turned out to be quite simple.

Code: Select all

convert test_0001.png test1.pdf
This will convert one image to a one page pdf file. The pdf will be created ok, but with the following warning
"convert: UnableToOpenConfigureFile"

Adding the suffix to the command will sort that out

Code: Select all

convert test_0001.png PDF: test1.pdf
It can also take multiple images at once.

Code: Select all

convert test_000[1-3].png PDF: test.pdf
The line above will take the three png files and create a pdf document with 3 pages.

Optionally you can add commands like -rotate 90 or -resize 50% for further manipulation.
Post Reply