in reply to image::Magick and images generated by script

Typical confusion, the magick and DWIMmery doesn't go that far without help :) Here's the regular way to do it
use LWP::Simple qw' mirror getstore '; getstore($url, $file) mirror($url, $file) $image->Read($file); ...
this may not work due to your webserver config (creating sockets)

Replies are listed 'Best First'.
Re^2: image::Magick and images generated by script
by jonnyfolk (Vicar) on Oct 16, 2008 at 04:57 UTC
    That worked very well for me - thank you very much!