Archive for the 'Imagemagick' Category

Using mogrify To Batch Resize Image Files

Monday, October 29th, 2007

ImageMagick’s mogrify is a great command line tool to resize images.
You can resize all your JPG images in a folder to a dimension of 800×600 with this command:
mogrify -resize 800×600! *.jpg
You can resize all your JPG images in a folder to a width of 600 and  maintain aspect ratio with this command.
mogrify -resize x600 *.jpg
References
http://www.imagemagick.org/script/mogrify.php
http://www.imagemagick.org/script/command-line-options.php#resize
http://www.novell.com/coolsolutions/tip/16524.html

Inkscape, Area Cuter, & Imagemagick

Saturday, September 1st, 2007

I use “Area Cuter” to slice up my Inkscape SVG images & export them to jpg for my web sites. For some reason after I installed the extensions on my Ubuntu Feisty machine, the menu “Area Cuter :: Cut and Generate Images” was not showing up. After a little digging I found a log [...]