GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Any ImageMagick experts? (https://gfy.com/showthread.php?t=1015026)

Shoplifter 03-20-2011 12:44 PM

Any ImageMagick experts?
 
I want to run an ImageMagick batch operation on a directory full of pictures.

I know the command that I want to run, but I don't have a batch script that will loop through all the pics.

Anyone have anything like that?

Thanks!

fris 03-20-2011 01:01 PM

whats the command

you can do mogrify -resize 800x600 *.jpg

for example

Shoplifter 03-20-2011 01:05 PM

Quote:

Originally Posted by fris (Post 17992475)
whats the command

you can do mogrify -resize 800x600 *.jpg

for example


Thanks fris... It didn't occur to me it would work with wildcards. :)

fris 03-20-2011 01:07 PM

Quote:

Originally Posted by Shoplifter (Post 17992484)
Thanks fris... It didn't occur to me it would work with wildcards. :)

but this will overwrite the orig image, so you would need to make a backup or you could do something like

Code:

for i in *.jpg; do mogrify -resize 800x600 temp/$i; done
temp being a temp dir where it will store


All times are GMT -7. The time now is 12:53 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123