Vanilla.PDF  1.5.2
Cross-platform toolkit for creating and modifying PDF documents
List of all members
FlateDecodeFilterHandle Class Reference

The Flate method is based on the public-domain zlib/deflate compression method. More...

Inheritance diagram for FlateDecodeFilterHandle:
FilterBaseHandle IUnknownHandle
error_type FlateDecodeFilter_Create (FlateDecodeFilterHandle **result)
 Creates a new filter instance.
 
error_type FlateDecodeFilter_Encode (FlateDecodeFilterHandle *handle, BufferHandle *data, BufferHandle **result)
 Encodes source data and returns encoded result data. More...
 
error_type FlateDecodeFilter_EncodeParams (FlateDecodeFilterHandle *handle, BufferHandle *data, DictionaryObjectHandle *parameters, BufferHandle **result)
 Encodes source data and returns encoded result data. More...
 
error_type FlateDecodeFilter_Decode (FlateDecodeFilterHandle *handle, BufferHandle *data, BufferHandle **result)
 Decodes source data and returns decoded result data. More...
 
error_type FlateDecodeFilter_Release (FlateDecodeFilterHandle *handle)
 Decrement the internal reference counter. More...
 

Additional Inherited Members

- Public Member Functions inherited from FilterBaseHandle
error_type FilterBase_Encode (FilterBaseHandle *handle, BufferHandle *data, BufferHandle **result)
 Encodes source data and returns encoded result data.
 
- Public Member Functions inherited from IUnknownHandle
error_type IUnknown_AddRef (IUnknownHandle *handle)
 Increment the internal reference counter.
 

Detailed Description

The Flate method is based on the public-domain zlib/deflate compression method.

It is fully defined in Internet RFC 1950 - ZLIB Compressed Data Format Specification, and RFC 1951 DEFLATE Compressed Data Format Specification.
For more information please visit section 7.4.4 - LZWDecode and FlateDecode Filters

Examples:
filter.c.

Friends And Related Function Documentation

◆ FlateDecodeFilter_Encode()

error_type FlateDecodeFilter_Encode ( FlateDecodeFilterHandle handle,
BufferHandle data,
BufferHandle **  result 
)
related

Encodes source data and returns encoded result data.

See also
FilterBase_Encode
Examples:
filter.c.

◆ FlateDecodeFilter_EncodeParams()

error_type FlateDecodeFilter_EncodeParams ( FlateDecodeFilterHandle handle,
BufferHandle data,
DictionaryObjectHandle parameters,
BufferHandle **  result 
)
related

Encodes source data and returns encoded result data.

See also
FilterBase_EncodeParams

◆ FlateDecodeFilter_Decode()

error_type FlateDecodeFilter_Decode ( FlateDecodeFilterHandle handle,
BufferHandle data,
BufferHandle **  result 
)
related

Decodes source data and returns decoded result data.

See also
FilterBase_Decode
Examples:
filter.c.

◆ FlateDecodeFilter_Release()

error_type FlateDecodeFilter_Release ( FlateDecodeFilterHandle handle)
related

Decrement the internal reference counter.

When the internal counter reaches zero the object is deleted. Releasing already disposed object causes undefined behavior.

See also
IUnknown_Release
Examples:
filter.c.

The documentation for this class was generated from the following file: