in reply to Re: Getting pixel colours with Image::Magick
in thread Getting pixel colours with Image::Magick
Maybe you can suggest an alternative approach that you used successfully?
Personally, I find Imager to work quite well. See Imager::Draw and Imager::Color:
my @colors = $img->getpixel(x => 0, y => [ 0 .. 3 ], type => '8bit +'); # ... $img->setpixel(x=>50, y=>70, color=>[ 255, 0, 255 ]);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Getting pixel colours with Image::Magick
by Your Mother (Archbishop) on Aug 11, 2019 at 15:36 UTC | |
|
Re^3: Getting pixel colours with Image::Magick
by LanX (Saint) on Aug 11, 2019 at 09:20 UTC |