iTextSharp.text.pdf.codec.PngWriter.crc C# (CSharp) 메소드

crc() 개인적인 정적인 메소드

private static crc ( byte buf ) : uint
buf byte
리턴 uint
        private static uint crc(byte[] buf)
        {
            return update_crc(0xffffffffU, buf, 0, buf.Length) ^ 0xffffffffU;
        }

Same methods

PngWriter::crc ( byte buf, int offset, int len ) : uint