perlmagick $obj->Get('interlace') always reports None

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
paul_krohn
Posts: 3
Joined: 2011-01-25T18:21:54-07:00
Authentication code: 8675308

perlmagick $obj->Get('interlace') always reports None

Post by paul_krohn »

Hi all. Longtime user, first post here. Thanks in advance for taking a look!

My issue is that it appears that PerlMagick always reports "None" as the interlace type in a snippet like this:

Code: Select all

my $obj = Image::Magick->new();
my $res = $obj->Read($imageFileName);
print STDOUT $imageFileName . ": " . $obj->Get('interlace') . "\n";
When I check the same images with identify, the interlace type is correctly reported. At least, for my set of test images, which contains one image with interlace type "JPEG", aka "progressive". I reproduced this on a freshly-updated MacPorts install of:

p5-perlmagick @6.59
ImageMagick @6.6.7-1

Insights much appreciated,

Paul
paul_krohn
Posts: 3
Joined: 2011-01-25T18:21:54-07:00
Authentication code: 8675308

Re: perlmagick $obj->Get('interlace') always reports None

Post by paul_krohn »

Sorry, this should be in the Perlmagick forum, re-posted there:

viewtopic.php?f=7&t=17931
Post Reply