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
There's an encoding overhead vs jpg, but a not-inconsequential drop in filesize. If I really, really cared about latency, I might want to make requests for webp if the info.json returns webp in formats for v2 or extraFormats for v3 (and I had cached the webp tiles!)
In an ideal world, I would want to control the ordering of my preferred formats. The default could be "jpg" to match current behaviour, but I could specify "webp, jpeg" so that if my endpoint supports webp i get webp, otherwise I still request jpg. Of course, you may want to default to png if you're crazy.
The text was updated successfully, but these errors were encountered:
This is an issue for UV when showing thumbs, or if there is no image service but a choice of image resources. For Image services, this would be a job for OpenSeadragon in its iiifTileSource class (the info.json is what gets handed over to OSD, either by URL or "by value").
All issues will be triaged for further investigation or closure by the 28 September 2023. If your issue is still relevant and would like for it be investigated further please comment by 14 September 2023.
Firefox 65 now supports webp, like chrome already does
example: https://developers.google.com/speed/webp/gallery1
There's an encoding overhead vs jpg, but a not-inconsequential drop in filesize. If I really, really cared about latency, I might want to make requests for webp if the
info.json
returnswebp
informats
for v2 orextraFormats
for v3 (and I had cached the webp tiles!)In an ideal world, I would want to control the ordering of my preferred formats. The default could be "jpg" to match current behaviour, but I could specify "webp, jpeg" so that if my endpoint supports webp i get webp, otherwise I still request jpg. Of course, you may want to default to png if you're crazy.
The text was updated successfully, but these errors were encountered: