delilama has asked for the wisdom of the Perl Monks concerning the following question:
If I change the call to the following:$image->BlobToImage($buffer); my($width, $height, $format) = $image->Get('width', 'height', 'format' +); print "$f\t$width" . "x" . "$height\t$format image.\n"; # works my @features = $image->Features(); # <--- silent segfault here
I get an error: panic: pp_iter at that line. I'm guessing because Features() is supposed to return an array, so this may not be related.my $features = $image->Features();
Any ideas?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Image::Magick "Features" question
by zentara (Cardinal) on Oct 11, 2011 at 12:35 UTC | |
by choroba (Cardinal) on Oct 11, 2011 at 12:43 UTC | |
|
Re: Image::Magick "Features" question
by zentara (Cardinal) on Oct 11, 2011 at 18:28 UTC | |
|
Re: Image::Magick "Features" question
by pvaldes (Chaplain) on Oct 11, 2011 at 21:14 UTC | |
by delilama (Initiate) on Oct 12, 2011 at 03:58 UTC | |
by Anonymous Monk on Oct 12, 2011 at 06:23 UTC |