Grant wrote:
>>> and it broke my perlmagick app which resizes images.
>> We can't help unless you explain how your app if broken. We need to
>> reproduce the problem before we can help resolve the differences.
>
> I'm using imagemagick within the perl framework "Interchange"
> (icdevgroup.org). Nothing is written to the interchange error logs so
> it's difficult to tell what went wrong. Downgrading back to 6.5.2.9
> from 6.5.7.0 fixes the problem. Here is my script. Should this still
> work in 6.5.7.0?
>
> my $full = Image::Magick->new;
> open(IMAGE, '<images/'.$sku.'_unprocessed.jpg');
> $full->Read(file=>\*IMAGE);
Hmmm, I do something like this:
my $image = Image::Magick->new;
my $stat = $image->Read( "images/${sku}_unprocessed.jpg" );
die $stat if $stat;
--
David N. Lombard
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users