pub type VipsFailOn = c_uint;
Expand description
VipsFailOn: @VIPS_FAIL_ON_NONE: never stop @VIPS_FAIL_ON_TRUNCATED: stop on image truncated, nothing else @VIPS_FAIL_ON_ERROR: stop on serious error or truncation @VIPS_FAIL_ON_WARNING: stop on anything, even warnings
How sensitive loaders are to errors, from never stop (very insensitive), to stop on the smallest warning (very sensitive).
Each one implies the ones before it, so #VIPS_FAIL_ON_ERROR implies #VIPS_FAIL_ON_TRUNCATED.