iTextSharp.text.pdf.codec.TiffWriter.WriteLong C# (CSharp) Method

WriteLong() public static method

public static WriteLong ( int v, Stream stream ) : void
v int
stream Stream
return void
        public static void WriteLong(int v, Stream stream) {
            stream.WriteByte((byte)((v >> 24) & 0xff));
            stream.WriteByte((byte)((v >> 16) & 0xff));
            stream.WriteByte((byte)((v >> 8) & 0xff));
            stream.WriteByte((byte)(v & 0xff));
        }