Search found 6 matches

by class3f
2013-10-30T05:51:50-07:00
Forum: Users
Topic: Using the number of CPU cores instead of one
Replies: 1
Views: 1839

Using the number of CPU cores instead of one

In one statement I make about 1,000 ImageMagick thumbnail images. The whole process takes about 70-80 seconds. After testing we found that IM uses 100% of one CPU core which causes delays. How to configure IM to use the two or three CPU cores? My version: # identify -version Version: ImageMagick 6.8...
by class3f
2013-10-07T09:38:47-07:00
Forum: Users
Topic: Small problem in query: syntax error near unexpected token (
Replies: 6
Views: 6975

Re: Small problem in query: syntax error near unexpected tok

Thanks for your help, the server made ​​a request. I have another question: Why the query is not removed the original image? I have four thumbnails and full size image...
by class3f
2013-10-07T09:07:03-07:00
Forum: Users
Topic: Small problem in query: syntax error near unexpected token (
Replies: 6
Views: 6975

Small problem in query: syntax error near unexpected token (

I wrote a command to create four thumbnail of the original image. I run a command in PHP using exec: convert /images/*.* ( -clone 0--1 -strip -thumbnail "68x51^>" -background white -gravity center -extent 68x51 -quality 80 +adjoin -scene 1 -write /images/%d_68x51.jpg -delete 0--1 ) ( -clon...
by class3f
2013-07-22T11:49:41-07:00
Forum: Users
Topic: Convert 10 Images with 3 clones for each
Replies: 6
Views: 5373

Re: Convert 10 Images with 3 clones for each

The number of folders will be changed depending on the time of the query. The folder will never be more than 20 images and no larger than 5MB. On the server I have 16GB of memory and I do not know whether a lot or a little for ImageMagick. Tests carried out later and see what is better or 100 reques...
by class3f
2013-07-22T09:11:51-07:00
Forum: Users
Topic: Convert 10 Images with 3 clones for each
Replies: 6
Views: 5373

Re: Convert 10 Images with 3 clones for each

By creating a query I have in mind only the speed of execution. I have about 50 folders, each from 0 to 20 files. Each file must have four thumbnails. I thought that I will perform one query for a single folder. In total, these questions will be about 50. Each of them doing with exec in php. Is this...
by class3f
2013-07-22T07:01:16-07:00
Forum: Users
Topic: Convert 10 Images with 3 clones for each
Replies: 6
Views: 5373

Convert 10 Images with 3 clones for each

Hello, This is my first contact with imagemagick. I have folder with 10 diffrent images. In one query I am trying to create four thumbnail sizes: 1024x768 - normall 360x270 - cut to fit 104x78 - cut to fit 68x51 - cut to fit created by me questions almost works: convert path/folder/*.* ( +clone -str...