ocaml-imagelib
ocaml-imagelib copied to clipboard
The imagelib library implements image formats such as PNG or PPM
A first step could be to use [this](http://www.schaik.com/pngsuite/) test suite, which is what I originally did (and it is used [here](https://github.com/patoline/patoline/blob/master/examples/imagelib_test.txp)).
The exceptions that are raised should be documented, in particular what happens when an invalid image file is loaded and when `Image.read_rgb` is used with invalid bounds. `result`-returning variants would...
Hi! What do you think about adding support for progressive parsing/rendering? Here is a demonstration: https://blog.codinghorror.com/progressive-image-rendering/ I'm mostly interested in the non-interlacing variant (due to memory consumption concerns), and it...