in reply to CGI::upload and Image::Magick
this is straight off cpan. try not using the Read( file => \*$fh ) and just use p->Read("imagefile");use Image::Magick; p = new Image::Magick; p->Read("imagefile"); p->Set(attribute => value, ...) ($a, ...) = p->Get("attribute", ...) p->routine(parameter => value, ...) p->Mogrify("Routine", parameter => value, ...) p->Write("filename");
|
|---|