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.
encoded_data_buffer | The encoded source data buffer. |
|
static |
Encode the source data buffer by Base64 algorithm.
data_buffer | The raw source data buffer. |
|
static |
Compress the source data buffer by DEFLATE algorithm.
data_buffer | The raw source data buffer. |
|
static |
Decompress the compressed data buffer by DEFLATE algorithm.
compressed_data_buffer | The compressed source data buffer. |