Aurelon Open API 8.1.1
Loading...
Searching...
No Matches
RIP Classes & functions

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.
 

Detailed Description

Typedef Documentation

◆ ColorConvertCB

typedef bool(* ColorConvertCB) (ColorConvert_Data &, void *)

CMM callback routine.

Parameters
dataInformation about the color to be converted.
refPrivate pointer provided when this callback is set by SetColorConvertCallBack
Returns
True when the color is converted, false when the internal CMM is to be used for the conversion.

Definition at line 21 of file AOI_Renderer.h.

Function Documentation

◆ AOI_WriteTIFF()

::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).

See also
AOI_Renderer, AOI_Screener
Parameters
pathUNICODE path to the TIFF file to create.
compressionCompression to be used for this TIFF:
  • TIFF_Comp_None : No compression
  • TIFF_Comp_CCITT : CCITT compression, only for 1 bit data
  • TIFF_Comp_LZW : LZW compression
platformEndianness of the TIFF data:
  • TIFF_Platform_i386 : Little endian
  • TIFF_Platform_PPC : Big endian
colorSpaceThe colorspace of the data to be written. This also defines the channels.
bitsPerPixelNumber of bits per pixel: 1, 8 or 16
widthWidth of the image data in pixels.
heightHeight of the image data in pixels.
dpiXHorizontal resolution of the image data in DPI.
dpiYVertical resolution of the image data in DPI.
imageDataPointer to the image data
Returns
NoError is succesfull otherwise the error.

Definition at line 90 of file AOI_TIFFWriter.cpp.