SoftCreatR / imei

IMEI - ImageMagick Easy Install
ISC License
309 stars 36 forks source link

UnableToWriteImageData error/jxl.c/WriteJXLImage/641 #40

Closed ausi closed 3 years ago

ausi commented 3 years ago

Writing JXL files seems to be broken in the current version.

With the following Dockerfile:

FROM php:7.4-cli
RUN apt-get update \
 && apt-get install -y wget libmagickwand-dev --no-install-recommends \
 && curl https://raw.githubusercontent.com/SoftCreatR/imei/main/imei.sh | bash

Converting an image to JXL inside the docker image:

convert test.png test.jxl

Results in the following error:

convert: UnableToWriteImageData `jxl-test.jxl' @ error/jxl.c/WriteJXLImage/641.
SoftCreatR commented 3 years ago

https://github.com/ImageMagick/ImageMagick/issues/4319

Until this has been resolved, you may force the installation of jpegxl 0.5 using --jxl-version 0.5.

SoftCreatR commented 3 years ago

Fixed via 11b42ca8f7b3bcb30ea41d369f42c3fa58e90596

ausi commented 3 years ago

Works great, thank you very much!

SoftCreatR commented 3 years ago

Thank you for the feedback.