Returns a new pixel iterator mw: the magick wand to iterate on
()
| 23 | // mw: the magick wand to iterate on |
| 24 | // |
| 25 | func (mw *MagickWand) NewPixelIterator() *PixelIterator { |
| 26 | return &PixelIterator{C.NewPixelIterator(mw.mw)} |
| 27 | } |
| 28 | |
| 29 | // Returns a new pixel iterator |
| 30 | // |