[PR #589] [MERGED] feat: add support for JPEG XL #1202

Closed
opened 2026-03-15 15:58:17 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/flyimg/flyimg/pull/589
Author: @sadok-f
Created: 9/22/2025
Status: Merged
Merged: 9/25/2025
Merged by: @sadok-f

Base: mainHead: issue#588


📝 Commits (8)

  • b493227 feat: add support for JPEG XL, closes #588
  • 5eca9cb fix: fix demo page option creation
  • 8f059ad style: format allowed output extensions for better readability
  • bf933da style: improve formatting
  • 508f609 style: clarify output format description
  • ab4cbe5 feat: add jxl-decoding-speed option and update jxl-effort default value
  • 713aaa8 fix: refactor upload handling in Response and DefaultController to support multipart and various content types
  • a9ffdb2 style: remove unnecessary blank line

📊 Changes

19 files changed (+608 additions, -61 deletions)

View changed files

📝 README.md (+1 -0)
📝 config/parameters.yml (+7 -0)
📝 docs/url-options.md (+21 -1)
📝 src/Core/Controller/DefaultController.php (+2 -30)
📝 src/Core/Entity/Image/InputImage.php (+6 -1)
📝 src/Core/Entity/Image/OutputImage.php (+34 -2)
📝 src/Core/Entity/Response.php (+88 -0)
📝 src/Core/Handler/ImageHandler.php (+3 -1)
📝 src/Core/Processor/ImageProcessor.php (+11 -1)
📝 src/Core/Processor/Processor.php (+1 -1)
📝 src/Core/Views/Default/index.html (+1 -1)
📝 tests/Core/BaseTest.php (+3 -0)
📝 tests/Core/Controller/DefaultControllerTest.php (+189 -0)
📝 tests/Core/Entity/Image/OutputImageTest.php (+2 -0)
📝 tests/Core/Entity/ResponseTest.php (+145 -0)
📝 tests/Core/Processor/ImageProcessorTest.php (+1 -1)
tests/testImages/square_result.jxl (+0 -0)
📝 web/css/main.css (+4 -0)
📝 web/js/main.js (+89 -22)

📄 Description

feat: add support for JPEG XL, closes #588


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/flyimg/flyimg/pull/589 **Author:** [@sadok-f](https://github.com/sadok-f) **Created:** 9/22/2025 **Status:** ✅ Merged **Merged:** 9/25/2025 **Merged by:** [@sadok-f](https://github.com/sadok-f) **Base:** `main` ← **Head:** `issue#588` --- ### 📝 Commits (8) - [`b493227`](https://github.com/flyimg/flyimg/commit/b4932273f2aa48bb525576e0927412589d06fa62) feat: add support for JPEG XL, closes #588 - [`5eca9cb`](https://github.com/flyimg/flyimg/commit/5eca9cba634bd2fc586af0d972bd25593f950470) fix: fix demo page option creation - [`8f059ad`](https://github.com/flyimg/flyimg/commit/8f059adb4c8732d426cbf557dd2e8fb745d857c7) style: format allowed output extensions for better readability - [`bf933da`](https://github.com/flyimg/flyimg/commit/bf933daa5aeb02ec2a27c2d31c27fb73ad64d09e) style: improve formatting - [`508f609`](https://github.com/flyimg/flyimg/commit/508f609b30318ecbe0d0d544786f85d4f036f937) style: clarify output format description - [`ab4cbe5`](https://github.com/flyimg/flyimg/commit/ab4cbe5421cb8af32e86313d2d3f36b2c84b23ef) feat: add jxl-decoding-speed option and update jxl-effort default value - [`713aaa8`](https://github.com/flyimg/flyimg/commit/713aaa86a5524c19590ed59e98b6ac34ea997a77) fix: refactor upload handling in Response and DefaultController to support multipart and various content types - [`a9ffdb2`](https://github.com/flyimg/flyimg/commit/a9ffdb263ae72937a2e3bf153896f0f4f26128a3) style: remove unnecessary blank line ### 📊 Changes **19 files changed** (+608 additions, -61 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) 📝 `config/parameters.yml` (+7 -0) 📝 `docs/url-options.md` (+21 -1) 📝 `src/Core/Controller/DefaultController.php` (+2 -30) 📝 `src/Core/Entity/Image/InputImage.php` (+6 -1) 📝 `src/Core/Entity/Image/OutputImage.php` (+34 -2) 📝 `src/Core/Entity/Response.php` (+88 -0) 📝 `src/Core/Handler/ImageHandler.php` (+3 -1) 📝 `src/Core/Processor/ImageProcessor.php` (+11 -1) 📝 `src/Core/Processor/Processor.php` (+1 -1) 📝 `src/Core/Views/Default/index.html` (+1 -1) 📝 `tests/Core/BaseTest.php` (+3 -0) 📝 `tests/Core/Controller/DefaultControllerTest.php` (+189 -0) 📝 `tests/Core/Entity/Image/OutputImageTest.php` (+2 -0) 📝 `tests/Core/Entity/ResponseTest.php` (+145 -0) 📝 `tests/Core/Processor/ImageProcessorTest.php` (+1 -1) ➕ `tests/testImages/square_result.jxl` (+0 -0) 📝 `web/css/main.css` (+4 -0) 📝 `web/js/main.js` (+89 -22) </details> ### 📄 Description feat: add support for JPEG XL, closes #588 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-15 15:58:17 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/flyimg#1202
No description provided.