{"id":20134164,"url":"https://github.com/0xd3adcode/aetherjfx-imagedecoder-jpegxl","last_synced_at":"2025-03-02T22:26:58.457Z","repository":{"id":262505538,"uuid":"887439364","full_name":"0xD3ADCODE/AetherJFX-ImageDecoder-JpegXL","owner":"0xD3ADCODE","description":"AetherJFX (JavaFX) image decoding (IIO) WebP plugin (JNA-powered)","archived":false,"fork":false,"pushed_at":"2024-11-12T18:55:41.000Z","size":648,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-13T09:24:28.168Z","etag":null,"topics":["image","javafx","jpegxl"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xD3ADCODE.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-12T18:41:59.000Z","updated_at":"2024-11-12T18:55:15.000Z","dependencies_parsed_at":"2024-11-12T19:54:26.971Z","dependency_job_id":null,"html_url":"https://github.com/0xD3ADCODE/AetherJFX-ImageDecoder-JpegXL","commit_stats":null,"previous_names":["0xd3adcode/aetherjfx-imagedecoder-jpegxl"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xD3ADCODE%2FAetherJFX-ImageDecoder-JpegXL","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xD3ADCODE%2FAetherJFX-ImageDecoder-JpegXL/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xD3ADCODE%2FAetherJFX-ImageDecoder-JpegXL/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xD3ADCODE%2FAetherJFX-ImageDecoder-JpegXL/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xD3ADCODE","download_url":"https://codeload.github.com/0xD3ADCODE/AetherJFX-ImageDecoder-JpegXL/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241580496,"owners_count":19985558,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["image","javafx","jpegxl"],"created_at":"2024-11-13T21:06:36.621Z","updated_at":"2025-03-02T22:26:58.434Z","avatar_url":"https://github.com/0xD3ADCODE.png","language":"Java","readme":"[![AetherJFX](https://img.shields.io/badge/Only%20for:-AetherJFX-blue)](https://github.com/0xD3ADCODE/AetherJFX)\n![Java](https://img.shields.io/badge/Java-17-b07219)\n\n# AetherJFX JpegXL Image Decoder Plugin\n\n\u003e [!WARNING]  \n\u003e This plugin is designed to be used ONLY with [JavaFX](https://github.com/openjdk/jfx) fork [AetherJFX](https://github.com/0xD3ADCODE/AetherJFX). Attempting to use it with standard JavaFX will lead to an exception!\n\n[JpegXL](https://github.com/libjxl/libjxl) image decoding plugin for [AetherJFX](https://github.com/0xD3ADCODE/AetherJFX)\n\nBased on [vavi-image-jpegxl](https://github.com/umjammer/vavi-image-jpegxl) and integrates into JavaFX's `ImageIO` (`IIO`) instead of default one that depends on `AWT`\n\n\u003e [!IMPORTANT]\n\u003e Not supported:  \n\u003e Animations (looks like, official `jxl-jni` Java bindings don't support them)\n\n## Dependency\n\n\u003e [!WARNING]  \n\u003e Prebuild `Windows x86-64` library is included into jar. Refer to [JpegXL](https://github.com/libjxl/libjxl) repository for installation guide for other systems\n\nDefine custom Gradle ivy repository in `repositories` block:\n```groovy\nrepositories {\n    //...your repositories\n    def github = ivy {\n        url 'https://github.com/'\n        patternLayout {\n            artifact '/[organisation]/[module]/releases/download/[revision]/[artifact].[ext]'\n        }\n        metadataSources { artifact() }\n    }\n    exclusiveContent {\n        forRepositories(github)\n        filter { includeGroup(\"0xD3ADCODE\") }\n    }\n}\n```\n\nAdd dependency into `dependencies` block:\n```groovy\ndependencies {\n    //...your dependencies\n    implementation(\"0xD3ADCODE:AetherJFX-ImageDecoder-JpegXL:{version}\") {\n        artifact {\n            name = 'AetherJFX-ImageDecoder-JpegXL-{version}'\n            type = 'jar'\n        }\n    }\n}\n```\n\nReplace `{version}` with latest [Release](https://github.com/0xD3ADCODE/AetherJFX-ImageDecoder-JpegXL/releases) tag (eg, `v1.0`)\n\n## Usage\nRegister plugin as soon as possible (before JavaFX Toolkit start) with just one line of code:\n```java\nJpegXLLoader.register();\n```\n\nAfter that all JpegXL images will be decoded using newly installed decoder directly into JavaFX's `Image` without `AWT`\n\n## Development\n\nTo properly build `jar` by yourself, clone repository and create `gradle.properties` file with:\n```text\nAETHER_JFX_SDK_PATH = \u003cpath to unpacked AetherJFX SDK folder\u003e\n```\n\n## Credits\n[libjxl](https://github.com/libjxl) for [JpegXL](https://github.com/libjxl/libjxl) decoder  \n[umjammer](https://github.com/umjammer/) for [vavi-image-jpegxl](https://github.com/umjammer/vavi-image-jpegxl) JpegXL decoder/encoder implementation for Java","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xd3adcode%2Faetherjfx-imagedecoder-jpegxl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xd3adcode%2Faetherjfx-imagedecoder-jpegxl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xd3adcode%2Faetherjfx-imagedecoder-jpegxl/lists"}