Search found 1 match
- 2014-02-12T07:19:36-07:00
- Forum: MagickWand
- Topic: MagickCore can't sync pixel
- Replies: 7
- Views: 20819
Re: MagickCore can't sync pixel
From the example provided, your imagen variable remains in a NULL pointer. It should be assigned by the return value of ReadImage. imagen = ReadImage(imagen_info, exception); The only other issue I see would be the assignment of color values on the PixelPacket. Assuming your working with RGB, you ...