Search found 3 matches

by yoni@catom.com
2015-11-19T01:51:05-07:00
Forum: Developers
Topic: Batch file run from task schedule
Replies: 2
Views: 6702

Re: Batch file run from task schedule

Thanks!
by yoni@catom.com
2015-11-19T00:52:33-07:00
Forum: Developers
Topic: Batch file run from task schedule
Replies: 2
Views: 6702

Batch file run from task schedule

I have this batch file:
@echo off
--trust-model always
for %%f in (C:\inetpub\folder\images\*) do (
echo %%f
convert %%f -resize 200 C:\inetpub\wwwroot\folder\gallery\%%~nf_big%%~xf
convert %%f -resize 100 C:\inetpub\wwwroot\folder\gallery\%%~nf_small%%~xf
move %%f C:\inetpub\wwwroot\folder\gallery ...
by yoni@catom.com
2015-05-20T23:35:40-07:00
Forum: Users
Topic: Resize images and move them to another folder with specific name
Replies: 1
Views: 3020

Resize images and move them to another folder with specific name

i have this
mogrify -resize 200 -path images/../test/ images/*.*
works great
i need to change the output file name so instead of image.jpg it will be image_big.jpg

tried this:
mogrify -resize 200 -format %t_big.%e -path images/../test/ images/*.*

but the i get the file name like this: image ...