Search found 1 match

by kFk
2012-01-17T04:23:43-07:00
Forum: Magick++
Topic: Reading psd layers from file performance problem
Replies: 0
Views: 7337

Reading psd layers from file performance problem

I'm reading layers from psd like this:
Image im1("c:/test.psd[1]");
Image im2("c:/test.psd[2]");
Image im3("c:/test.psd[3]");
..
The psd file is large (ca 70Mb and 500 layers) and if I understand correctly ImageMagick reads whole file each time on each layer load.
Is it possible to speed up this ...