Larry Gritz
Larry Gritz
originally #286
The idea is to make sure that iv can accept a partial file, meaning: one that opens, but some scanlines/tiles succeed when read and others fail, it should be tolerant...
Our JPEG-XL reader uses the jxl API to extract the ICC profile... but then it doesn't call decode_icc_profile to enter the information as attributes in the ImageSpec. Also, the JPEG-XL...
Our HEIF reader does not yet find and extract any embedded ICC profile, nor does the writer handle ICC profiles.
Just like we have oiiotool command `--sisplit` which splits an image's subimages (what exr calls "parts") into separate images on the oiiotool stack, it might be handy to have `--layersplit`...
[libspng](https://libspng.org) is an alternative to libpng that is both (allegedly) higher performance and also a much simpler dependency to manage (just one .h and one .c file, easily "vendored"). We...
libOpenEXRCore/CMakeLists.txt never adds libdeflate cmake targets, so technically, there's nothing in particular telling it where to `-I` to find libdeflate.h (needed by `OpenEXRCore/compression.c`). It happens to work out ok if...
Right now, osltoy assumes that the shader being toyed with has a color output variable called "Cout", and that's the one to display. There are two ways to make this...