The Flate method is based on the public-domain zlib/deflate compression method.
More...
|
error_type CALLING_CONVENTION | FlateDecodeFilter_Create (FlateDecodeFilterHandle **result) |
| | Creates a new filter instance.
|
| |
| error_type CALLING_CONVENTION | FlateDecodeFilter_Encode (FlateDecodeFilterHandle *handle, BufferHandle *data, BufferHandle **result) |
| | Encodes source data and returns encoded result data.
|
| |
| error_type CALLING_CONVENTION | FlateDecodeFilter_EncodeParams (FlateDecodeFilterHandle *handle, BufferHandle *data, DictionaryObjectHandle *parameters, BufferHandle **result) |
| | Encodes source data and returns encoded result data.
|
| |
| error_type CALLING_CONVENTION | FlateDecodeFilter_Decode (FlateDecodeFilterHandle *handle, BufferHandle *data, BufferHandle **result) |
| | Decodes source data and returns decoded result data.
|
| |
| error_type CALLING_CONVENTION | FlateDecodeFilter_DecodeParams (FlateDecodeFilterHandle *handle, BufferHandle *data, DictionaryObjectHandle *parameters, BufferHandle **result) |
| | Decodes source data with specified params and returns decoded result data.
|
| |
| error_type CALLING_CONVENTION | FlateDecodeFilter_Release (FlateDecodeFilterHandle *handle) |
| | Decrement the internal reference counter.
|
| |
|
Public Member Functions inherited from FilterBaseHandle |
|
error_type CALLING_CONVENTION | FilterBase_Encode (FilterBaseHandle *handle, BufferHandle *data, BufferHandle **result) |
| | Encodes source data and returns encoded result data.
|
| |
Public Member Functions inherited from IUnknownHandle |
|
error_type CALLING_CONVENTION | IUnknown_AddRef (IUnknownHandle *handle) |
| | Increment the internal reference counter.
|
| |
Related Symbols inherited from FilterBaseHandle |
|
error_type CALLING_CONVENTION | FilterBase_EncodeParams (FilterBaseHandle *handle, BufferHandle *data, DictionaryObjectHandle *parameters, BufferHandle **result) |
| | Encodes source data with specified params and returns encoded result data.
|
| |
|
error_type CALLING_CONVENTION | FilterBase_Decode (FilterBaseHandle *handle, BufferHandle *data, BufferHandle **result) |
| | Decodes source data and returns decoded result data.
|
| |
|
error_type CALLING_CONVENTION | FilterBase_DecodeParams (FilterBaseHandle *handle, BufferHandle *data, DictionaryObjectHandle *parameters, BufferHandle **result) |
| | Decodes source data with specified params and returns decoded result data.
|
| |
|
error_type CALLING_CONVENTION | FilterBase_ToUnknown (FilterBaseHandle *handle, IUnknownHandle **result) |
| | Reinterpret current object as IUnknownHandle.
|
| |
|
error_type CALLING_CONVENTION | FilterBase_FromUnknown (IUnknownHandle *handle, FilterBaseHandle **result) |
| | Convert IUnknownHandle to FilterBaseHandle.
|
| |
| error_type CALLING_CONVENTION | FilterBase_Release (FilterBaseHandle *handle) |
| | Decrement the internal reference counter.
|
| |
Related Symbols inherited from IUnknownHandle |
| error_type CALLING_CONVENTION | IUnknown_Release (IUnknownHandle *handle) |
| | Decrement the internal reference counter.
|
| |
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.