示例#1
0
文件: GD.cs 项目: zer0x304/gd-sharp
        public void StringUp( Font font, int x, int y, string message, GDColor color )
        {
            HandleRef fontHandle =  font.GetHandle();

               		GDImport.gdImageStringUp( this.Handle, fontHandle, x, y, message, color);
        }
示例#2
0
文件: GD.cs 项目: zer0x304/gd-sharp
        public void CharUp( Font font, int x, int y, int c, GDColor color )
        {
            HandleRef fontHandle =  font.GetHandle();

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