TIFF supports color profiles

This commit is contained in:
DarthSim
2025-08-20 18:35:01 +03:00
parent 83e64ff2d3
commit f50176f95b
2 changed files with 3 additions and 1 deletions

View File

@@ -11,6 +11,7 @@
- Fix the `If-Modified-Since` request header handling when the `raw` processing option is used.
- Fix `X-Origin-Height` and `X-Result-Height` debug header values for animated images.
- Fix keeping copyright info in EXIF.
- Fix preserving color profiles in TIFF images.
- (pro) Fix generating thumbnails for VP9 videos with high bit depth.
- (pro) Fix `IMGPROXY_CUSTOM_RESPONSE_HEADERS` and `IMGPROXY_RESPONSE_HEADERS_PASSTHROUGH` configs behavior when the `raw` processing option is used.

View File

@@ -161,7 +161,8 @@ func (it Type) SupportsColourProfile() bool {
it == PNG ||
it == WEBP ||
it == HEIC ||
it == AVIF
it == AVIF ||
it == TIFF
}
func (it Type) SupportsQuality() bool {