iTextSharp.text.pdf.codec.CCITTG4Encoder.Close C# (CSharp) Method

Close() public method

public Close ( ) : byte[]
return byte[]
        public byte[] Close()
        {
            Fax4PostEncode();
            return outBuf.ToByteArray();
        }

Usage Example

コード例 #1
0
        /**
         * Encodes a full image.
         * @param data the data to encode
         * @param width the image width
         * @param height the image height
         * @return the encoded image
         */
        public static byte[] Compress(byte[] data, int width, int height)
        {
            CCITTG4Encoder g4 = new CCITTG4Encoder(width);

            g4.Fax4Encode(data, 0, g4.rowbytes * height);
            return(g4.Close());
        }
All Usage Examples Of iTextSharp.text.pdf.codec.CCITTG4Encoder::Close