Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SDWebImage/SDWebImageJPEGXLCoder
A SDWebImage coder plugin to support JPEG-XL image
https://github.com/SDWebImage/SDWebImageJPEGXLCoder
ios jpeg jpeg-xl macos sdwebimage swift-package-manager tvos visionos watchos
Last synced: 13 days ago
JSON representation
A SDWebImage coder plugin to support JPEG-XL image
- Host: GitHub
- URL: https://github.com/SDWebImage/SDWebImageJPEGXLCoder
- Owner: SDWebImage
- License: mit
- Created: 2024-02-26T08:01:25.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-02-28T16:57:46.000Z (8 months ago)
- Last Synced: 2024-04-14T10:15:53.898Z (7 months ago)
- Topics: ios, jpeg, jpeg-xl, macos, sdwebimage, swift-package-manager, tvos, visionos, watchos
- Language: Objective-C
- Homepage:
- Size: 284 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SDWebImageJPEGXLCoder
[![Version](https://img.shields.io/cocoapods/v/SDWebImageJPEGXLCoder.svg?style=flat)](http://cocoapods.org/pods/SDWebImageJPEGXLCoder)
[![License](https://img.shields.io/cocoapods/l/SDWebImageJPEGXLCoder.svg?style=flat)](http://cocoapods.org/pods/SDWebImageJPEGXLCoder)
[![Platform](https://img.shields.io/cocoapods/p/SDWebImageJPEGXLCoder.svg?style=flat)](http://cocoapods.org/pods/SDWebImageJPEGXLCoder)
[![SwiftPM compatible](https://img.shields.io/badge/SwiftPM-compatible-brightgreen.svg?style=flat)](https://swift.org/package-manager/)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/SDWebImage/SDWebImageJPEGXLCoder)SDWebImageJPEGXLCoder is a coder plugin for SDWebImage, to supports [JPEG-XL](https://jpeg.org/jpegxl/) format.
See: [Why JPEG-XL](https://jpegxl.info/why-jxl.html)
This coder supports the HDR/SDR decoding, as well as JPEG-XL aniamted image.
## Notes
1. This coder supports animation via UIImageView/NSImageView, no SDAnimatedImageView currently (Because the current coder API need codec supports non-sequential frame decoding, but libjxl does not have. Will remove this limit in SDWebImage 6.0)
2. This coder does not supports JPEG-XL encoding (Because I have no time :))
3. Apple's ImageIO supports JPEGXL decoding from iOS 17/tvOS 17/watchOS 10/macOS 14 (via: [WWDC2023](https://developer.apple.com/videos/play/wwdc2023/10122/)), so SDWebImage on those platform can also decode JPEGXL images using `SDImageIOCoder` (but no animated JPEG-XL support)## Requirements
+ iOS 9.0
+ macOS 10.11
+ tvOS 9.0
+ watchOS 2.0
+ visionOS 1.0## Installation
#### CocoaPods
SDWebImageJPEGXLCoder is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile:
```ruby
pod 'SDWebImageJPEGXLCoder'
```#### Carthage
SDWebImageJPEGXLCoder is available through [Carthage](https://github.com/Carthage/Carthage).
```
github "SDWebImage/SDWebImageJPEGXLCoder"
```Note: You must use `carthage build --use-xcframeworks` for integration (because it supports 5 Apple platforms. You can limit platforms you need by using `--platform iOS,visionOS`)
#### Swift Package Manager
SDWebImageJPEGXLCoder is available through [Swift Package Manager](https://swift.org/package-manager).
```swift
let package = Package(
dependencies: [
.package(url: "https://github.com/SDWebImage/SDWebImageJPEGXLCoder.git", from: "0.1.0")
]
)
```## Usage
### Add Coder
Before using SDWebImage to load JPEGXL images, you need to register the JPEGXL Coder to your coders manager. This step is recommended to be done after your App launch (like AppDelegate method).
+ Objective-C
```objective-c
// Add coder
SDImageJPEGXLCoder *JPEGXLCoder = [SDImageJPEGXLCoder sharedCoder];
[[SDImageCodersManager sharedManager] addCoder:JPEGXLCoder];
```+ Swift
```swift
// Add coder
let JPEGXLCoder = SDImageJPEGXLCoder.shared
SDImageCodersManager.shared.addCoder(JPEGXLCoder)
```### Loading
+ Objective-C
```objective-c
// JPEG-XL online image loading
NSURL *JPEGXLURL;
UIImageView *imageView;
[imageView sd_setImageWithURL:JPEGXLURL];
```+ Swift
```swift
// JPEG-XL online image loading
let JPEGXLURL: URL
let imageView: UIImageView
imageView.sd_setImage(with: JPEGXLURL)
```Note: You can also test animated JPEG-XL on UIImageView/NSImageView and WebImage (via SwiftUI port)
## Example
To run the example project, clone the repo, and run `pod install` from the root directory first. Then open `SDWebImageJPEGXLCoder.xcworkspace`.
This is a demo to show how to use JPEG-XL and animated JPEG-XL images via `SDWebImageJPEGXLCoderExample` target.
## Screenshot
These JPEG-XL images are from [JXL Art Gallery](https://jpegxl.info/art/)
## Author
[DreamPiggy](https://github.com/dreampiggy)
## License
SDWebImageJPEGXLCoder is available under the MIT license. See [the LICENSE file](https://github.com/SDWebImage/SDWebImageJPEGXLCoder/blob/master/LICENSE) for more info.
## Thanks
+ [libjxl](https://github.com/SDWebImage/libjxl-Xcode)