Ack!
No, that is no longer the case.
Please see:
Re: Re: Resizing an image with perl.
I was going to post code, but silent11's is
nearly identical to mine.
So instead I will post this and you can see GD create true color images.
:^)
http://www.xtype.org/albums/photo.cgi?img=01368&size=640x480
Ciao, -xtype
PS. note the slight difference when creating a new image?
sub resize {
use GD;
my($data, @size) = @_;
my $image = GD::Image->newFromJpegData($data, 1);
my @isize = $image->getBounds();
my $new_image = GD::Image->new(@size, 1);
$new_image->copyResampled($image,0,0,0,0,@size,@isize);
return $new_image->jpeg(75);
}
http://search.cpan.org/author/LDS/GD-2.01/GD.pm if you need help.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.