Constructor
VipsImageanalyzeload
Declaration [src]
int
vips_analyzeload (
const char* filename,
VipsImage** out,
...
)
Description [src]
Load an Analyze 6.0 file. If filename is “fred.img”, this will look for
an image header called “fred.hdr” and pixel data in “fred.img”. You can
also load “fred” or “fred.hdr”.
Images are loaded lazilly and byte-swapped, if necessary. The Analyze metadata is read and attached.
::: seealso
vips_image_new_from_file().
Parameters
filename |
const char* |
File to load. |
|
| The data is owned by the caller of the function. | |
| The string is a NUL terminated UTF-8 string. | |
out |
VipsImage |
Decompressed image. |
|
| The argument will be set by the function. | |
| The called function takes ownership of the data, and is responsible for freeing it. | |
... |
none |
|