Search found 3 matches
- 2016-12-31T13:22:59-07:00
- Forum: Users
- Topic: Preserving Color Profile for Renditions
- Replies: 2
- Views: 2562
Preserving Color Profile for Renditions
Hello, I am working on an IM script. The intent is to auto populate renditions from master files (incl. .TIF, .PSD, .JPG). One rendition is to generate CMYK. I've successfully created the various renditions using this script: @echo off set ORIGINAL_FOLDER=.\original-assets set RENDITION_FOLDER ...
- 2016-11-27T12:48:45-07:00
- Forum: Users
- Topic: Auto generate renditions .jpg, .psd 'unable to open image' error
- Replies: 2
- Views: 3853
Re: Auto generate renditions .jpg, .psd 'unable to open image' error
Do a directory listing. Do you actually have a file called ".\original-assets/Collect"? I suspect you don't, but do have a file with a space in the name, something like ".\original-assets/Collect something else.jpg". If so, then you should put quotes around filenames in your convert. It was the ...
- 2016-11-27T11:23:10-07:00
- Forum: Users
- Topic: Auto generate renditions .jpg, .psd 'unable to open image' error
- Replies: 2
- Views: 3853
Auto generate renditions .jpg, .psd 'unable to open image' error
Hello! I am trying to write a script to automatically generate renditions for .tif, .jpg and .psd files. (I'm on ImageMagick 7.0.2-1 Q16 x64 2016-06-23) Right now, my script says: @echo off set ORIGINAL_FOLDER=.\original-assets set RENDITION_FOLDER=.\renditions for /f %%A in ('dir /B %ORIGINAL ...