Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Cazeu64
Posts: 4 Joined: 2016-03-21T03:21:23-07:00
Authentication code: 1151
Post
by Cazeu64 » 2016-04-28T07:30:06-07:00
Hi !
I use this kind of command :
Code: Select all
import -display :150 -window root -crop 1000x600+50+50 ../tmp/test.png
This command lasts 150ms average. I need te decrease this duration, 50ms would be nice !
Am I doing something wrong ? Maybe the image format ? Png is too heavy ?
Thanks in advance !
magick
Site Admin
Posts: 11064 Joined: 2003-05-31T11:32:55-07:00
Post
by magick » 2016-04-28T10:00:21-07:00
Add -screen to your command line.
Cazeu64
Posts: 4 Joined: 2016-03-21T03:21:23-07:00
Authentication code: 1151
Post
by Cazeu64 » 2016-04-28T23:47:35-07:00
Thanks for the answer !
What's the difference with this ?
It take now 130 ms average, It's 20ms faster.
Have I to delete "-window root" from command ?