Search found 10 matches
- 2018-04-10T15:23:02-07:00
- Forum: Bugs
- Topic: Error when converting lots in JPG in BATCH
- Replies: 18
- Views: 17922
Re: Error when converting lots in JPG in BATCH
I have the problem till a few versions ago. The first was 6.7 I think. I have installed Windows Binary Releases always. First I worked under Windows 7 Professional, and now with the Windows 10 platform. Now I have tried the versions: - ImageMagick-7.0.7-28-Q16-x64-dll.exe - ImageMagick-7.0.7-28-Q16 ...
- 2018-04-10T11:20:52-07:00
- Forum: Bugs
- Topic: Error when converting lots in JPG in BATCH
- Replies: 18
- Views: 17922
Re: Error when converting lots in JPG in BATCH
Sorry. I haven't been able to update the libjpeg delegate. Could you tell me how please? Or maybe where can I see how to do it? Thank you.
- 2018-04-06T01:38:21-07:00
- Forum: Bugs
- Topic: Error when converting lots in JPG in BATCH
- Replies: 18
- Views: 17922
Re: Error when converting lots in JPG in BATCH
The bat works creatting the directories and moving the archives different of JPG to its directory. Then batch crashes when it tries to convert the first JPG.
- 2018-04-06T01:05:55-07:00
- Forum: Bugs
- Topic: Error when converting lots in JPG in BATCH
- Replies: 18
- Views: 17922
Re: Error when converting lots in JPG in BATCH
Thank you. It happens with all JPG. I do not why, but if you change the line convert "%%F" -resize 1500x1000 -quality 90 -interlace plane "%%C-%%B-%%A/%%F" by this other convert "%%F" -resize 1500x1000 -strip -quality 90 -interlace plane "%%C-%%B-%%A/%%F" The bat works till the end. Never crashes.
- 2018-04-06T00:15:58-07:00
- Forum: Bugs
- Topic: Error when converting lots in JPG in BATCH
- Replies: 18
- Views: 17922
Re: Error when converting lots in JPG in BATCH
In my experience any JPG gives the problem.
- 2018-04-06T00:13:47-07:00
- Forum: Bugs
- Topic: Error when converting lots in JPG in BATCH
- Replies: 18
- Views: 17922
Re: Error when converting lots in JPG in BATCH
In my experience any JPG gives the problem.
- 2018-04-06T00:12:51-07:00
- Forum: Bugs
- Topic: Error when converting lots in JPG in BATCH
- Replies: 18
- Views: 17922
Re: Error when converting lots in JPG in BATCH
I have tried with stripped JPGs an remains without working. And this works in a single .bat: for %%F in (*.JPG) do ( for /f "tokens=1-3 delims=/ " %%A in ("%%~tF") do ( md "%%C-%%B-%%A" md "%%C-%%B-%%A/JPG ORIGINAL" convert "%%F" -resize 1500x1000 -strip -quality 90 -interlace plane "%%C-%%B-%%A/%%F ...
- 2018-04-05T23:03:32-07:00
- Forum: Bugs
- Topic: Error when converting lots in JPG in BATCH
- Replies: 18
- Views: 17922
Re: Error when converting lots in JPG in BATCH
Thank you. It happens with all JPG. I do not why, but if you change the line convert "%%F" -resize 1500x1000 -quality 90 -interlace plane "%%C-%%B-%%A/%%F" by this other convert "%%F" -resize 1500x1000 -strip -quality 90 -interlace plane "%%C-%%B-%%A/%%F" The bat works till the end. Never crashes.
- 2018-04-05T22:09:41-07:00
- Forum: Bugs
- Topic: Error when converting lots in JPG in BATCH
- Replies: 18
- Views: 17922
Re: Error when converting lots in JPG in BATCH
Sorry, I have now more information. This code is part of a batch which classifies different kind of archives, like PSD, DNG, MOV, etc. If I isolate this code in a single BATCh everything works. The trouble appears when it is in the full BATCH I copy now its code: REM JPG CLASIFICA Y COMPRIME A 90 ...
- 2018-04-05T21:40:15-07:00
- Forum: Bugs
- Topic: Error when converting lots in JPG in BATCH
- Replies: 18
- Views: 17922
Error when converting lots in JPG in BATCH
Morning. I use a batch archive for resizing lots of JPG. This works: for %%F in (*.JPG) do ( for /f "tokens=1-3 delims=/ " %%A in ("%%~tF") do ( md "%%C-%%B-%%A" md "%%C-%%B-%%A/JPG ORIGINAL" convert "%%F" -resize 1500x1000 -strip -quality 90 -interlace plane "%%C-%%B-%%A/%%F" move "%%F" "%%C-%%B ...