Subject: | width and height don't change when image is scales/rotated |
The width() and height() methods of a PostScript::Simple::EPS object aren't updated when an image is scaled or rotated. Specifically, if I do this:
my $e = new PostScript::Simple::EPS(file => 'some_pic.eps');
print $e->width, ' ', $e->height, "\n";
$e->scale(2,2);
$e->rotate(90);
print $e->width, " ", $e->height, "\n";
Then the width and height printed the second time are the same as the first time.
I'm using PostScript::Simple 0.06p3 with perl v5.8.7