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.
combining multiple options and a bump in quality
Re: combining multiple options and a bump in quality
Here is one way to increase the quality of the rendered Postscript/PDF:
- convert -density 400 image.pdf -resize 25% image.png
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: combining multiple options and a bump in quality
As another point....
Remove the '*.eps' from the mogrify, as the find is placing the command it found where the '{}' marker is.
The above command is going to convert ANY eps image in the current directory once for EVERY eps image that find, finds!!!!!!afonit wrote:my working command is
find /home/afonit/Desktop/ADP07 -name "*eps" -exec mogrify -format png *.eps {} \;
Remove the '*.eps' from the mogrify, as the find is placing the command it found where the '{}' marker is.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: combining multiple options and a bump in quality
thank you for the tip
find /home/afonit/Desktop/ADP07 -name "*eps" -exec mogrify -format png {} \;
having removed the '*eps' at the end now gives me error free runs.
Now I am just onto the bumping up of the resolution in the outputted files.
find /home/afonit/Desktop/ADP07 -name "*eps" -exec mogrify -format png {} \;
having removed the '*eps' at the end now gives me error free runs.
Now I am just onto the bumping up of the resolution in the outputted files.