in reply to Re^2: Can't call method "scaleY" on an undefined value at C:/strawberry/perl/site/lib/ Image/Seek.pm line 137.
in thread Can't call method "scaleY" on an undefined value at C:/strawberry/perl/site/lib/ Image/Seek.pm line 137.

The typical shortcut for
my $img = Imager->new(); $img->read(...) or ...;
is
my $img = Imager->new(...) or ...;
  • Comment on Re^3: Can't call method "scaleY" on an undefined value at C:/strawberry/perl/site/lib/ Image/Seek.pm line 137.
  • Select or Download Code

Replies are listed 'Best First'.
Re^4: Can't call method "scaleY" on an undefined value at C:/strawberry/perl/site/lib/ Image/Seek.pm line 137.
by socrtwo (Sexton) on Jul 28, 2009 at 05:25 UTC
    This doesn't work, same line 137 error returned.
      It was a suggestion to the module's author for what the interface should be.