[PR #2893] [MERGED] feat: JPEG XL #9762

Closed
opened 2026-02-05 14:10:20 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/2893
Author: @uhthomas
Created: 6/21/2023
Status: Merged
Merged: 6/21/2023
Merged by: @alextran1502

Base: mainHead: 2743


📝 Commits (1)

📊 Changes

7 files changed (+171 additions, -53 deletions)

View changed files

📝 mobile/lib/utils/files_helper.dart (+3 -0)
📝 server/Dockerfile (+2 -2)
📝 server/src/immich/config/asset-upload.config.spec.ts (+18 -15)
📝 server/src/immich/config/asset-upload.config.ts (+62 -13)
📝 web/src/lib/utils/asset-utils.spec.ts (+25 -1)
📝 web/src/lib/utils/asset-utils.ts (+21 -20)
📝 web/src/lib/utils/file-uploader.ts (+40 -2)

📄 Description

Support the JPEG XL format (.jxl).

JPEG XL is reported as supported by sharp.format:

jxl: {
  id: 'jxl',
  input: { file: true, buffer: true, stream: true, fileSuffix: [Array] },
  output: { file: true, buffer: true, stream: true }
}

image

Fixes: #2743


🔄 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/immich-app/immich/pull/2893 **Author:** [@uhthomas](https://github.com/uhthomas) **Created:** 6/21/2023 **Status:** ✅ Merged **Merged:** 6/21/2023 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `2743` --- ### 📝 Commits (1) - [`e891440`](https://github.com/immich-app/immich/commit/e891440365c507d7cd6b729f43a69d3454eb2286) feat: JPEG XL ### 📊 Changes **7 files changed** (+171 additions, -53 deletions) <details> <summary>View changed files</summary> 📝 `mobile/lib/utils/files_helper.dart` (+3 -0) 📝 `server/Dockerfile` (+2 -2) 📝 `server/src/immich/config/asset-upload.config.spec.ts` (+18 -15) 📝 `server/src/immich/config/asset-upload.config.ts` (+62 -13) 📝 `web/src/lib/utils/asset-utils.spec.ts` (+25 -1) 📝 `web/src/lib/utils/asset-utils.ts` (+21 -20) 📝 `web/src/lib/utils/file-uploader.ts` (+40 -2) </details> ### 📄 Description Support the JPEG XL format (.jxl). JPEG XL is reported as supported by `sharp.format`: ``` jxl: { id: 'jxl', input: { file: true, buffer: true, stream: true, fileSuffix: [Array] }, output: { file: true, buffer: true, stream: true } } ``` ![image](https://github.com/immich-app/immich/assets/9749173/e0e457f8-9ac0-4342-b5f1-0c143f7cf6b1) Fixes: #2743 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 14:10:20 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#9762