Foxit PDF SDK
|
Static Public Member Functions | |
static byte [] | base64Decode (byte[] encoded_data_buffer) |
Decode the encoded data buffer by Base64 algorithm. More... | |
static byte [] | base64Encode (byte[] data_buffer) |
Encode the source data buffer by Base64 algorithm. More... | |
static byte [] | flateCompress (byte[] data_buffer) |
Compress the source data buffer by DEFLATE algorithm. More... | |
static byte [] | flateDecompress (byte[] compressed_data_buffer) |
Decompress the compressed data buffer by DEFLATE algorithm. 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.
Decode the encoded data buffer by Base64 algorithm.
[in] | encoded_data_buffer | The encoded source data buffer. |
[in] | encoded_data_buffer | The encoded source data buffer. |
|
static |
Encode the source data buffer by Base64 algorithm.
Encode the source data buffer by Base64 algorithm.
[in] | data_buffer | The raw source data buffer. |
[in] | data_buffer | The raw source data buffer. |
|
static |
Compress the source data buffer by DEFLATE algorithm.
Compress the source data buffer by DEFLATE algorithm.
[in] | data_buffer | The raw source data buffer. |
[in] | data_buffer | The raw source data buffer. |
|
static |
Decompress the compressed data buffer by DEFLATE algorithm.
Decompress the compressed data buffer by DEFLATE algorithm.
[in] | compressed_data_buffer | The compressed source data buffer. |
[in] | compressed_data_buffer | The compressed source data buffer. |