Re: Converting Larage SVG to Smaller JPG's
Posted: 2009-06-20T09:59:32-07:00
Try this:
-density = Sets the input quality in dpi e.g. 300
-resize = Resize the image in this case to 1000px x 1000px
-crop = Size to crop to ( you will have remainders if this size does not fit equaly into the resized image )
-quality = Output quality ( 100 = best )
Code: Select all
convert -density 300 USA_Counties.svg -resize 1000x1000 -crop 200x200 -quality 100 cropped.jpg
-resize = Resize the image in this case to 1000px x 1000px
-crop = Size to crop to ( you will have remainders if this size does not fit equaly into the resized image )
-quality = Output quality ( 100 = best )