Here is another idea how to run from name.bat or name.cmd:
Instead of using:
mogrify -quality 80 -resize "800x800>" *.jpg
you can use
for %%I in (*.jpg) do call mogrify -quality 80 -resize "800x800>" "%%I"
The file name %%I must be in " "
Search found 2 matches
- 2015-04-25T02:01:06-07:00
- Forum: Bugs
- Topic: Win7 / 6.6.6-Q16: Invalid argument @ error/blob.c/OpenBlob
- Replies: 6
- Views: 12256
- 2014-10-18T16:39:24-07:00
- Forum: Bugs
- Topic: Win7 / 6.6.6-Q16: Invalid argument @ error/blob.c/OpenBlob
- Replies: 6
- Views: 12256
Re: Win7 / 6.6.6-Q16: Invalid argument @ error/blob.c/OpenBl
I had the same problem without special characters. After moving the map to root D:\ the mogrify command was succesful.