For some image manipulations, I first need to check colorspace, what I'm doing with Ping function to avoid reading all pixels right now. If a specific colorspace is found, I need to process pixels. Should I have to use the Read method or the lib will guess that pixels needs to be read before modifying pixels and so will read them for me?
On the same kind. If I've read the pixels using the Read method, is there a flag to know that MagickImage object is already filled with the pixel data from a Read operation (already read) ? In my code, I'm doing multiple operations and I want to avoid dual reading of the pixels.
On the same kind. If I've read the pixels using the Read method, is there a flag to know that MagickImage object is already filled with the pixel data from a Read operation (already read) ? In my code, I'm doing multiple operations and I want to avoid dual reading of the pixels.