batch resize images using mogrify (imagemagick)
Assuming you have imagemagick installed you can batch resize images easily.
In a terminal:
mogrify -resize 1280x960 *.jpeg
mogrify = somthing (i dunno, but it works)
-resize = option to resize image
1280x960 = pick any resolution [1024x768 works just as fine too]
*.jpeg = everything that has a .jpeg ending [can also be *.jpg *.png]
In a terminal:
mogrify -resize 1280x960 *.jpeg
mogrify = somthing (i dunno, but it works)
-resize = option to resize image
1280x960 = pick any resolution [1024x768 works just as fine too]
*.jpeg = everything that has a .jpeg ending [can also be *.jpg *.png]
| Link: | www.imagemagick.com...Search for more tips related to this link |
| Rating: | 100% positive, 5 total Votes |
| Categories: | imagemagick resize batch resize mogrify pictures |
| Added: | on Mar 08, 2007 at 5:12 pm |
| Added By: | an anonymous user |

