in reply to AS Perl 629 Image::Magick makes Perl crash when outputting file to Image

I don't know whether this would solve anything, but since you're on a windows flavour, you should switch to binary mode when outputting your picture to the file.

And, please do check your system calls for errors.

open(DATA, ">$filename") or die "Aargh: $!"; binmode DATA; ...

--bwana147

  • Comment on Re: AS Perl 629 Image::Magick makes Perl crash when outputting file to Image
  • Download Code