iTextSharp.text.pdf.TrueTypeFontSubSet.WriteFontInt C# (CSharp) Method

WriteFontInt() protected method

protected WriteFontInt ( int n ) : void
n int
return void
        protected void WriteFontInt(int n)
        {
            outFont[fontPtr++] = (byte)(n >> 24);
            outFont[fontPtr++] = (byte)(n >> 16);
            outFont[fontPtr++] = (byte)(n >> 8);
            outFont[fontPtr++] = (byte)(n);
        }