Guildencrantz has asked for the wisdom of the Perl Monks concerning the following question:
On the ImageMagick-6.0.7.1 it outputs:#!/usr/bin/perl use Image::Magick; my $thumbnail = Image::Magick->new; $thumbnail->Read("full.bmp"); $thumbnail->Write("full.png"); $thumbnail->Resize(width=>'200', height=>'150'); $thumbnail->Write("tn_200x150.png"); $thumbnail->Resize(width=>'100', height=>'75'); $thumbnail->Write("tn_100x75.png"); undef $thumbnail; exec "file /home/mhenkel/*.png";
and the ImageMagick-perl-6.2.8.0 system:/home/mhenkel/full.png: PNG image data, 240 x 294, 8-bit/color R +GB, non-interlaced /home/mhenkel/tn_100x75.png: PNG image data, 100 x 75, 8-bit/color RG +B, non-interlaced /home/mhenkel/tn_200x150.png: PNG image data, 200 x 150, 8-bit/color R +GB, non-interlaced
Ideas? Suggestions?/home/mhenkel/full.png: PNG image data, 240 x 294, 8-bit/color R +GB, non-interlaced /home/mhenkel/tn_100x75.png: PNG image data, 100 x 75, 16-bit/color R +GB, non-interlaced /home/mhenkel/tn_200x150.png: PNG image data, 200 x 150, 16-bit/color +RGB, non-interlaced
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Image::Magick Depth
by parv (Parson) on Sep 03, 2008 at 03:40 UTC | |
by Guildencrantz (Sexton) on Sep 03, 2008 at 04:20 UTC | |
by Guildencrantz (Sexton) on Sep 03, 2008 at 05:18 UTC | |
|
Re: Image::Magick Depth
by kyle (Abbot) on Sep 03, 2008 at 03:41 UTC | |
by Guildencrantz (Sexton) on Sep 03, 2008 at 04:59 UTC |