Easy Way to Learn ASP.NET

GDI+ Tutorial

GDI+ Introduction
GDI+ Lines
GDI+ Rectangles
GDI+ Ellipses
GDI+ Arcs
GDI+ Polygons
GDI+ Cardinal Splines
GDI+ Bezier Splines
GDI+ Graphics Paths
GDI+ Brushes
GDI+ Regions
GDI+ Antialiasing
GDI+ Bitmaps
GDI+ Metafiles
GDI+ Transformations
GDI+ Text

GDI+ Introduction

GDI+ is a Graphic Device Interface that enables programmers to create graphics, drawing text, and manipulating graphical images on Windows application or ASP.NET Web application.

You can use GDI+ to render graphical images on ASP.NET Web pages.


GDI+ Class

GDI+ is a set of classes in the .NET Framework. To work with GDI+ we can use the System.Drawing namespace which provide direct access to GDI+ basic graphics functionality.

Below is the lists of GDI+ namespaces:


Graphics Categories

Using GDI+ you can work with three categories of graphics:

  1. Two-dimensional (2D) vector graphics, such as lines, curves, and figures that are specified by sets of points on a coordinate system.
  2. Imaging, such as Bitmap image.
  3. Typography, displays text in a variety of fonts, sizes, and styles.