rkalla / imgscalr

Simple Java image-scaling library implementing Chris Campbell's incremental scaling algorithm as well as Java2D's "best-practices" image-scaling techniques.
Apache License 2.0
1.23k stars 244 forks source link

Fixed automatic resizing for non-square targets. #95

Open soerenbernstein opened 10 years ago

soerenbernstein commented 10 years ago

Previously, automatic mode only respected the longer dimension of the source image. That would lead to an improper scaled image, if the aspect ratio (w/h) for landscape image of the source is smaller than the aspect ratio of the target size.

For example, a nearly square but still landscape source image resized to a targe size of 200px x 150px resulted in an image height larger than 150px.