dbmdz / iiif-server-hymir

Hymir is a Java based IIIF Server. It is based on "IIIF Image API Java Libraries" and "IIIF Presentation API Java Libraries" projects (see https://github.com/dbmdz)
MIT License
27 stars 7 forks source link

Fix rounding error #214

Closed bitzl closed 3 years ago

bitzl commented 3 years ago

In certain cases, the rounding is off by one pixel because Math.ceil is used. If in these cases also rotation is applied and the image happens to be processed by libturbojpeg, then this sends down the whole processing a wrong path, ultimately resulting in an exception that the requested area would exceed the image itself.

Fixes #212