Search found 2 matches

by idries
2016-10-08T22:54:01-07:00
Forum: MagickWand
Topic: How can I access pixel index?
Replies: 4
Views: 21348

Re: How can I access pixel index?

I am on 7.0.3-0.

Does the index field contain reasonable data in your version?
by idries
2016-09-24T01:54:12-07:00
Forum: MagickWand
Topic: How can I access pixel index?
Replies: 4
Views: 21348

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 p...