Thread GD-Problem: Fehler (27 answers)
Opened by Froschpopo at 2004-07-21 21:02

kabel
 2004-07-22 12:59
#84730 #84730
User since
2003-08-04
704 Artikel
BenutzerIn
[default_avatar]
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

View full thread GD-Problem: Fehler