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

Finddiff() private static method

private static Finddiff ( byte bp, int offset, int bs, int be, int color ) : int
bp byte
offset int
bs int
be int
color int
return int
        private static int Finddiff(byte[] bp, int offset, int bs, int be, int color)
        {
            return bs + (color != 0 ? Find1span(bp, offset, bs, be) : Find0span(bp, offset, bs, be));
        }