You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the direct and redirect phases, tiles are read from the backing image server and send forward to the GUI. This is currently done through the Java image frameworks, which means a lot of cycles wasted on decoding and encoding images, including quality loss due to JPG.
Such tiles should be handled outside of the image framework.
The text was updated successfully, but these errors were encountered:
For the redirect phase, served tiles must be square. This makes it problematic to pass-through as some edge-tiles must be padded. Maybe issue #11 can help here, as it can be calculated whether a tile will be full-sized or partial.
In the
direct
andredirect
phases, tiles are read from the backing image server and send forward to the GUI. This is currently done through the Java image frameworks, which means a lot of cycles wasted on decoding and encoding images, including quality loss due to JPG.Such tiles should be handled outside of the image framework.
The text was updated successfully, but these errors were encountered: