Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Support JPEG XL Image Converter #10015

Open
wants to merge 4 commits into
base: v2
Choose a base branch
from

Conversation

solonovamax
Copy link

@solonovamax solonovamax commented Nov 18, 2024

↪️ Pull Request

Adds support for converting images to JPEG XL.

Closes #10003

💻 Examples

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>HTML Example</title>
  </head>
  <body>
    <picture>
      <source srcset="image.jpeg?as=avif&width=800" type="image/avif" />
      <source srcset="image.jpeg?as=jxl&width=800" type="image/jxl" /> <!--- JPEG XL image -->
      <source srcset="image.jpeg?as=webp&width=800" type="image/webp" />
      <source srcset="image.jpeg?width=800" type="image/jpeg" />
      <img src="image.jpeg?width=200" alt="test image" />
    </picture>
  </body>
</html>

✔️ PR Todo

  • Added/updated unit tests for this change
  • Filled out test instructions (In case there aren't any unit tests)
  • Included links to related issues/PRs

solonovamax added a commit to solonovamax/website that referenced this pull request Nov 18, 2024
@solonovamax solonovamax force-pushed the feature/jpegxl-image-converter branch from 4d8c44c to c10287f Compare November 18, 2024 18:28
@devongovett devongovett enabled auto-merge (squash) December 26, 2024 00:08
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Support JPEG XL
2 participants