combining multiple options and a bump in quality
Posted: 2007-10-19T06:06:21-07:00
my working command is
find /home/afonit/Desktop/ADP07 -name "*eps" -exec mogrify -format png *.eps {} \;
(I am still figuring out what the "{} \;" means but I got it from another post and it works)
When this operation runs - it works great, though the resulting png files are quite small - in their resolution and thus hard to read - visually decipher.
on http://www.imagemagick.org/Usage/basics/ it speaks of depth and quality, though it seems unclear which one will give the result of the resultant png having a higher dpi, and whether to place that before or after the mogrify command.
find /home/afonit/Desktop/ADP07 -name "*eps" -exec mogrify -format png *.eps {} \;
(I am still figuring out what the "{} \;" means but I got it from another post and it works)
When this operation runs - it works great, though the resulting png files are quite small - in their resolution and thus hard to read - visually decipher.
on http://www.imagemagick.org/Usage/basics/ it speaks of depth and quality, though it seems unclear which one will give the result of the resultant png having a higher dpi, and whether to place that before or after the mogrify command.