I am on 7.0.3-0.
Does the index field contain reasonable data in your version?
Search found 2 matches
- 2016-10-08T22:54:01-07:00
- Forum: MagickWand
- Topic: How can I access pixel index?
- Replies: 4
- Views: 22724
- 2016-09-24T01:54:12-07:00
- Forum: MagickWand
- Topic: How can I access pixel index?
- Replies: 4
- Views: 22724
How can I access pixel index?
Hi, I'm trying to read the pixel index data from a palettized image. I've tried a lot of different approaches but my naive implementation is: int x, y; size_t width; PixelIterator* pixel_iterator = NewPixelIterator(read_wand); for (y = 0; y < (long)MagickGetImageHeight(read_wand); y++) { PixelInfo ...