Thread GD-Problem: Fehler
(27 answers)
Opened by Froschpopo at 2004-07-21 21:02
along the lines ...
Code (perl): (dl
)
1 2 3 4 5 my $image = Image::Magick->new; $image->Read ($filename); my ($h, $w) = $image->Get (qw/height width/); $image->Resize (width => $w*$value_between_0_and_1, height => $h*$value_between_0_and_1); $image->Write("png:-"); schreibt nach stdout, in aktion hier. angewandt auf unser logo :-) -- stefan
|