Aurelon Open API 8.1.1
|
Classes | |
class | AOI_Renderer |
Renderer / RIP. More... | |
struct | ColorConvert_Data |
Color information for CMM callback. More... | |
class | AOI_Screener |
Screener / halftoning. More... | |
class | AOI_SoftProofRenderer |
Renderer / RIP. More... | |
Typedefs | |
typedef bool(* | ColorConvertCB) (ColorConvert_Data &, void *) |
CMM callback routine. | |
Functions | |
::ExceptionCode | AOI_WriteTIFF (const aur::ACPL::FileSpec &path, uint8_t compression, uint16_t platform, AOI_ColorSpaceEnum colorSpace, uint16_t bitsPerPixel, uint32_t width, uint32_t height, float dpiX, float dpiY, const void *imageData) |
TIFF writer. | |
typedef bool(* ColorConvertCB) (ColorConvert_Data &, void *) |
CMM callback routine.
data | Information about the color to be converted. |
ref | Private pointer provided when this callback is set by SetColorConvertCallBack |
Definition at line 21 of file AOI_Renderer.h.
::ExceptionCode AOI_WriteTIFF | ( | const aur::ACPL::FileSpec & | path, |
uint8_t | compression, | ||
uint16_t | platform, | ||
AOI_ColorSpaceEnum | colorSpace, | ||
uint16_t | bitsPerPixel, | ||
uint32_t | width, | ||
uint32_t | height, | ||
float | dpiX, | ||
float | dpiY, | ||
const void * | imageData ) |
TIFF writer.
Writes rendered output as TIFF (accepting an UNICODE path).
path | UNICODE path to the TIFF file to create. |
compression | Compression to be used for this TIFF:
|
platform | Endianness of the TIFF data:
|
colorSpace | The colorspace of the data to be written. This also defines the channels. |
bitsPerPixel | Number of bits per pixel: 1, 8 or 16 |
width | Width of the image data in pixels. |
height | Height of the image data in pixels. |
dpiX | Horizontal resolution of the image data in DPI. |
dpiY | Vertical resolution of the image data in DPI. |
imageData | Pointer to the image data |
Definition at line 90 of file AOI_TIFFWriter.cpp.