in reply to Image::Magick woes
You are using an undocumented bit of the interface (but the docs are sparse). Does this not work? It works fine for me.
use Image::Magick; my $tmpName = 'd:/proxy/html/images/email.gif'; my $thumb = Image::Magick->new(); $thumb->Read( $tmpName ); my ( $height, $width ) = $thumb->Get( 'height', 'width' ); print "$tmpName: $height h $width w\n"; __DATA__ d:/proxy/html/images/email.gif: 14 h 14 w
cheers
tachyon
s&&rsenoyhcatreve&&&s&n.+t&"$'$`$\"$\&"&ee&&y&srve&&d&&print
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Image::Magick woes
by geektron (Curate) on Sep 05, 2003 at 04:00 UTC | |
|
Re: Re: Image::Magick woes
by geektron (Curate) on Sep 05, 2003 at 04:09 UTC | |
by tachyon (Chancellor) on Sep 05, 2003 at 04:48 UTC | |
by Arbogast (Monk) on Sep 05, 2003 at 05:15 UTC |