Ejemplo n.º 1
0
        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);
        }
Ejemplo n.º 2
0
        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);
        }
Ejemplo n.º 3
0
        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);
        }
Ejemplo n.º 4
0
        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);
        }