Foxit PDF SDK
|
Static Public Member Functions | |
static String | Base64Decode (const void *encoded_data_buffer, size_t length) |
Decode the encoded data buffer by Base64 algorithm. More... | |
static String | Base64Encode (const void *data_buffer, size_t length) |
Encode the source data buffer by Base64 algorithm. More... | |
static String | FlateCompress (const void *data_buffer, size_t length) |
Compress the source data buffer by DEFLATE algorithm. More... | |
static String | FlateDecompress (const void *compressed_data_buffer, size_t length) |
Decompress the compressed data buffer by DEFLATE algorithm. More... | |
Additional Inherited Members | |
![]() | |
FS_HANDLE | Handle () const |
Get the handle of current object. More... | |
This class provides utility functions such as encoding or compression. Foxit PDF SDK library should has been initialized successfully by function Library::Initialize before calling any function of this class.
|
static |
Decode the encoded data buffer by Base64 algorithm.
[in] | encoded_data_buffer | The encoded source data buffer. |
[in] | length | The length of data buffer in byte. |
|
static |
Encode the source data buffer by Base64 algorithm.
[in] | data_buffer | The raw source data buffer. |
[in] | length | The length of data buffer in byte. |
|
static |
Compress the source data buffer by DEFLATE algorithm.
[in] | data_buffer | The raw source data buffer. |
[in] | length | The length of data buffer in byte. |
|
static |
Decompress the compressed data buffer by DEFLATE algorithm.
[in] | compressed_data_buffer | The compressed source data buffer. |
[in] | length | The length of data buffer in byte. |