Skip Menu |

This queue is for tickets about the Image-Resize CPAN distribution.

Report information
The Basics
Id: 99529
Status: new
Priority: 0/
Queue: Image-Resize

People
Owner: sherzodr [...] cpan.org
Requestors: GURUPERL [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: int() to sprintf()
You should replace this: $height = int($self->height * $k); $width = int($self->width * $k); on this: $height = sprintf("%.0f", $self->height * $k); $width = sprintf("%.0f", $self->width * $k); Because sometimes int() make 99, when 100 needed.