dlemstra wrote:
hm.. how can I save changed data to the actual buffer in a memory?
There is any way how I can change actual data without copying it to the buffer and back(I need maximum performance)?
You are looking for the GetWritablePixels method of MagickImage. You will get a copy of the buffer in memory and not a pointer to the actual data. You might also want to took a look at the Evaluate method to modify the pixels.Hello Dirk
hm.. how can I save changed data to the actual buffer in a memory?
There is any way how I can change actual data without copying it to the buffer and back(I need maximum performance)?