Search found 7 matches

by ManuO
2014-01-29T11:55:24-07:00
Forum: Users
Topic: Mogrify resize to 50 percent images larger than 800px
Replies: 15
Views: 51338

Re: Mogrify resize to 50 percent images larger than 800px

Thanks a lot,

I worked great.
by ManuO
2014-01-29T09:24:13-07:00
Forum: Users
Topic: Mogrify resize to 50 percent images larger than 800px
Replies: 15
Views: 51338

Re: Mogrify resize to 50 percent images larger than 800px

Hello again Snibgo, Can you help with a last modification to my batch script? identify %1 identify -format "%%[fx:w>400]" %1 FOR /R %%a in (*.bmp) ^ DO FOR /F "usebackq" %%D ^ IN (`identify -format "%%[fx:w>400]" %%a`) ^ DO if %%D==1 mogrify "%%~fa" -resize 50%% %%a The above works fine with folder ...
by ManuO
2014-01-27T05:05:50-07:00
Forum: Users
Topic: Mogrify resize to 50 percent images larger than 800px
Replies: 15
Views: 51338

Re: Mogrify resize to 50 percent images larger than 800px

Thanks to both Snibgo and fmw42,

Both solutions worked fine.
by ManuO
2014-01-26T20:37:07-07:00
Forum: Users
Topic: Mogrify resize to 50 percent images larger than 800px
Replies: 15
Views: 51338

Re: Mogrify resize to 50 percent images larger than 800px

Thanks Snibgo,

Now I am getting the desired result based on the size of the image. How could I apply to a bunch of files at the same time?
by ManuO
2014-01-26T19:48:59-07:00
Forum: Users
Topic: Mogrify resize to 50 percent images larger than 800px
Replies: 15
Views: 51338

Re: Mogrify resize to 50 percent images larger than 800px

Thanks Snibgo,

I just tried the batch script without success. When I run it there is no out.png file created even though I don't see an error.

I am running Windows 7. I can also run on Mac OS 10.9 or Ubuntu 13.10.
by ManuO
2014-01-26T04:00:10-07:00
Forum: Users
Topic: Mogrify resize to 50 percent images larger than 800px
Replies: 15
Views: 51338

Re: Mogrify resize to 50 percent images larger than 800px

Thanks snibgo, You translated my question as intended. Would you know any sample script for achieving the needed result? I checked Fred's Scripts page and the closest I can see is the aspect http://www.fmwconcepts.com/imagemagick/aspect/index.php , but I don't think it does what I need. PS: I am ...
by ManuO
2014-01-25T04:38:20-07:00
Forum: Users
Topic: Mogrify resize to 50 percent images larger than 800px
Replies: 15
Views: 51338

Mogrify resize to 50 percent images larger than 800px

Hello, My first post on the forum. I wanted to first thank the ImageMagick Team for the fantastic piece of software. I am using mogrify to resize a set of images on Mac or Ubuntu using the following command: mogrify -resize 50% *.jpg and the resulting images are produced properly. My question is how ...