typedef struct _t_PDEImageFlate *PDEImageFlate;
PDEColorSpace PDEImageFlateAcquireColorSpace(IN PDEImageFlate imgFlate);
imgFlate | IN/OUT An object of type PDEImageFlate.
|
NULL. void PDEImageFlateGetAttrs(IN PDEImageFlate imgFlate, OUT PDEImageFlateAttrsP attrsP, IN ASUns32 attrsSize);
imgFlate | IN/OUT A flate image resource object.
|
attrsP | IN/OUT (Filled by the method) A pointer to a PDEImageFlateAttrs structure containing the attributes of the flate image.
|
attrsSize | IN/OUT The size of the
attrsP buffer in bytes. |
void PDEImageFlateGetCosObj(IN PDEImageFlate pdeImageFlate, OUT CosObj *cosObjP);
pdeImageFlate | IN/OUT The flate image whose Cos object is obtained.
|
cosObjP | IN/OUT (Filled by the method) The Cos object for the image.
|
Gets a data stream for a flate compressed image, PDEImageFlate object.
The caller must dispose of the returned ASStm by calling ASStmClose().
ASStm PDEImageFlateGetDataStm(IN PDEImageFlate imgFlate, IN ASUns32 flags);
imgFlate | IN/OUT The flate image whose data stream is obtained.
|
flags | IN/OUT PDEImageDataFlags flags. If the kPDEImageEncodedData flag is set, data is returned in encoded form. Otherwise, data is decoded.
|