On Thu, 21 Mar 2002 14:12:16 -0500, [EMAIL PROTECTED] (Dave K) wrote:

>I have a cgi script-
>
>#!C:/Perl/bin/perl -wT
>use strict;
>use CGI;
>my $q = new CGI;
>binmode STDOUT;
>print $q->header(-type => "image/gif" );
>
>use Image::Magick;
>
>my $image=Image::Magick->new;
>$image->Set(size=>'30x180');
>$image->Read("gradient:#ff0000-#0000ff");
>$image->Raise('3x3');
>$image->Rotate(-90);
>$image->Write( 'gif:-');
>
>I run under WinNT, ActiveState perl, Apache. The script fails - malformed
>header. It appears the  write

Well just for your information, your script runs error free
under linux and apache.




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to