in reply to Re: Re: Image::Magick resize question
in thread Image::Magick resize question

$image->Read(file=>\*IMAGE) || die "Unable to read image: $!";
According to my docs, that should be:
{ my $result = $image->Read(file => \*IMAGE); die $result if $result; }
Perhaps another pass over the manual would be useful, since your code is quite different from anything I've ever seen in the docs. No results are ever returned in $!.

-- Randal L. Schwartz, Perl hacker