iTextSharp.text.pdf.PdfReader.FlateDecode C# (CSharp) Метод

FlateDecode() публичный статический Метод

public static FlateDecode ( byte inp ) : byte[]
inp byte
Результат byte[]
        public static byte[] FlateDecode(byte[] inp) {
            byte[] b = FlateDecode(inp, true);
            if (b == null)
                return FlateDecode(inp, false);
            return b;
        }
        

Same methods

PdfReader::FlateDecode ( byte inp, bool strict ) : byte[]

Usage Example

Пример #1
0
            public byte[] Decode(byte[] b, PdfName filterName, PdfObject decodeParams, PdfDictionary streamDictionary)
            {
                MemoryStream outS = EnableMemoryLimitsAwareHandler(streamDictionary);

                b = PdfReader.FlateDecode(b, outS);
                b = PdfReader.DecodePredictor(b, decodeParams);
                return(b);
            }
All Usage Examples Of iTextSharp.text.pdf.PdfReader::FlateDecode