Struct EXRImage
Synopsis
#include <tinyexr.h>
typedef struct _EXRImage
Description
No description yet.
Mentioned in
- Getting Started / Loading Singlepart EXR from a file.
- Getting Started / Loading Multipart EXR from a file.
- Examples / .hdr to EXR converter
- Examples / LDR to EXR converter
Source
typedef struct _EXRImage {
EXRTile *tiles; // Tiled pixel data. The application must reconstruct image
// from tiles manually. NULL if scanline format.
unsigned char **images; // image[channels][pixels]. NULL if tiled format.
int width;
int height;
int num_channels;
// Properties for tile format.
int num_tiles;
} EXRImage;