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
Support decoding ISO HDR (avif/heic/jpeg-xl, etc) (SDWebImage#3778)
* Support HDR
* Support HDR
* When using SDWebImageProgressiveLoad and setting it to SDWebImageContextImageDecodeToHDR, it will be decoded to HDR only when loading is complete.
* When SDImageIOAnimatedCoder turns on incremental, it does not need to be decoded to HDR when it is not completed
* Sample image to remove sensitive information
* 1、use remote resources for HDR testing
2、add simulator log for HDR
* Support HDR encode
* Support HDR encode
* imageRef release error
* HDR Decoded is not required for decoding, otherwise the type will be lost
* HDR encode format
* hdrImageRef not released correctly
* HDR image must be lazy decode
* HDR image must be lazy decode
* JEPG HDR image must be lazy decode, otherwise it will crash
* HDR, encoding properties add kCGImageDestinationEncodeToISOGainmap, compatible with SDR displays while preserving HDR
* 支持 decode to HDR
* HDR encoding is not currently supported
* add UIImage.sd_isHighDynamicRange, use check UIImage is HDR
* refactor: Do not hack on HEICS and distinguish static/aniamted image encoding UTI
* refactor: Move cross-platform screen info into SDDeviceHelper
* change: Do not disable force decode when turn on decodeToHDR
Need actually check the HDR info of CGImage, or better, we can pre-decode to drop lazy HDR image
* change: use UIImage.imageRendererFormat when force decode using graphics renderer
This can inherit the possible info like dynamic range
* fix: When decode HDR image to SDR, need specify the decode request
Tested on macOS 14.5 and iOS 18.0 behavior
* test: Added unit test for HDR decoding
* demo: Update the macOS demo to show the HDR image
* test: workaround the SDR decode on Simulator environment
* change: The `sd_isHighDynamicRange` should check CGImage as fallback as well
* test: temp disable a unused test case
---------
Co-authored-by: DreamPiggy <[email protected]>
@"http://www.httpwatch.com/httpgallery/authentication/authenticatedimage/default.aspx?0.35786508303135633", // requires HTTP auth, used to demo the NTLM auth
// For animated GIF rendering, set `animates` to YES or will only show the first frame
28
-
self.imageView2.animates = YES; // `SDAnimatedImageRep` can be used for built-in `NSImageView` to support better GIF & APNG rendering as well. No need `SDAnimatedImageView`
46
+
self.imageView3.animates = YES; // `SDAnimatedImageRep` can be used for built-in `NSImageView` to support better GIF & APNG rendering as well. No need `SDAnimatedImageView`
A Boolean value indicating whether to encode the first frame only for animated image during encoding. (NSNumber). If not provide, encode animated image if need.
0 commit comments