Search found 5 matches
- 2016-08-18T02:46:23-07:00
- Forum: Users
- Topic: Cropping hangs
- Replies: 9
- Views: 2852
Re: Cropping hangs
I've found the reason behind the problem. The memory was indeed the issue, but mainly because I just used renamed .tif files (renamed .tif --> .jpg) to be able to run the script. I got the script from someone else with the instructions to use .jpg:s, hence the reason for renaming them. I did a batch ...
- 2016-08-17T01:51:36-07:00
- Forum: Users
- Topic: Cropping hangs
- Replies: 9
- Views: 2852
Re: Cropping hangs
If someone has a better suggestion, I'm open to trying them. Basically I want a script that automatically detects any jpg:s in a directory, and crops & names them similar to what I have in my original script.
- 2016-08-16T23:32:00-07:00
- Forum: Users
- Topic: Cropping hangs
- Replies: 9
- Views: 2852
Re: Cropping hangs
Just tried Q8, same thing. I have 16 GB on one computer and 8 GB on the other, both on which it worked great before. Indeed the memory usage seems to be maxed out, at least on one computer. It is still quite strange why a process that previously worked fine, would not work anymore. I tried creating ...
- 2016-08-16T12:33:56-07:00
- Forum: Users
- Topic: Cropping hangs
- Replies: 9
- Views: 2852
Re: Cropping hangs
ImageMagick-7.0.2-Q16 (Tried on ImageMagick-7.0.1-Q16) as well
Win 7 Ultimate SP1
Win 7 Ultimate SP1
- 2016-08-16T12:26:33-07:00
- Forum: Users
- Topic: Cropping hangs
- Replies: 9
- Views: 2852
Cropping hangs
Hello. I'm running the following code as a .bat file, to crop my images which range from 10000x10000 up to 20000x30000 px. for %%f in (*.jpg) do ( convert %%f -crop 500x500 -set filename:tile "%%t_%%[fx:page.y/500+1]_%%[fx:page.x/500+1]" slices\%%[filename:tile].jpg ) Simply put, the problem is that ...