 | PdfiumFPDFCodecs_FlateEncode(Byte) Method |
Encodes the specified srcBuf using zlib/deflate compression method and return the result as a byte array.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic static byte[] FPDFCodecs_FlateEncode(
byte[] srcBuf
)
Public Shared Function FPDFCodecs_FlateEncode (
srcBuf As Byte()
) As Byte()
public:
static array<unsigned char>^ FPDFCodecs_FlateEncode(
array<unsigned char>^ srcBuf
)
static member FPDFCodecs_FlateEncode :
srcBuf : byte[] -> byte[] public static byte[] FPDFCodecs_FlateEncode(
byte[] srcBuf
)
Patagames.Pdf.Pdfium.FPDFCodecs_FlateEncode = function(srcBuf);
Parameters
- srcBuf Byte
- A byte array, containing data must be encoded.
Return Value
ByteA byte array containing encoded data; Null if any error occurred.
See Also