CactusViewer
CactusViewer copied to clipboard
Support embedded ICC color profile
It seems CactusView does not yet support viewing images with embedded ICC color profile properly. I tested with both JPG and PNG.
Test image source:
- Web page containing multiple images: https://people.csail.mit.edu/ericchan/hdr/hdr-jxl.php
- Image in question: https://people.csail.mit.edu/ericchan/hdr/jxl_images/20140606_102418_IMGP0297.jxl
Test images transcoded by me:
JPEG example
Sample image can be transcoded to JPG with ICC profile using libjxl ( https://github.com/libjxl/libjxl/releases/tag/v0.9.1 ) like so:
- With XYB:
".\libjxl-v0.9.1\cjpegli.exe" ".\forest.jxl" ".\forest_xyb.jpg" --quality=90 --xyb --chroma_subsampling=444
- Without XYB:
".\libjxl-v0.9.1\cjpegli.exe" ".\forest.jxl" ".\forest.jpg" --quality=90 --chroma_subsampling=444
Result in CactusView vs. GIMP
Using XYB
Not using XYB
PNG example
Sample image can be transcoded to PNG with ICC profile using libjxl ( https://github.com/libjxl/libjxl/releases/tag/v0.9.1 ) like so:
-
".\libjxl-v0.9.1\djpegli.exe" ".\forest.jpg" ".\forest.png"