Beispiel #1
0
        /***********************************************************************************\
        *  GD Font/Text
        \***********************************************************************************/

        public void Char(Font font, int x, int y, int c, GDColor color)
        {
            HandleRef fontHandle = font.GetHandle();

            GDImport.gdImageChar(this.Handle, fontHandle, x, y, c, color);
        }