Skip Menu |

This queue is for tickets about the PostScript-Simple CPAN distribution.

Report information
The Basics
Id: 14351
Status: new
Priority: 0/
Queue: PostScript-Simple

People
Owner: Nobody in particular
Requestors: bas [...] debian.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.06p3
Fixed in: (no value)



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