How are you looping over your input images or is it just one image with multiple pages such as a pdf.
Sorry for the confusion, here is a section of the relevant script:
#!/bin/bash
for i in `ls *.pdf`
do
convert -size 612x792 -density 150 02-05-13_951.pdf -append png8: "${i/.pdf}".png;
done ...
Search found 2 matches
- 2013-04-01T13:35:10-07:00
- Forum: Users
- Topic: Append is no longer working
- Replies: 3
- Views: 2601
- 2013-04-01T12:15:28-07:00
- Forum: Users
- Topic: Append is no longer working
- Replies: 3
- Views: 2601
Append is no longer working
I use the following command in a script once a month for batch conversions:
convert -size 612x792 -density 150 $i -append png8:"${i/.pdf}".png
This month is was brought to my attention that only the first page is appearing. When I looked closer all I see are multi-paged PNG files, but not a ...
convert -size 612x792 -density 150 $i -append png8:"${i/.pdf}".png
This month is was brought to my attention that only the first page is appearing. When I looked closer all I see are multi-paged PNG files, but not a ...