You are on page 1of 2

Definition - What does Graphics Device Interface + (GDI+) mean?

Graphics Device Interface + (GDI+) is a graphical subsystem of Windows that consists of an application programming interface (API) to display graphics and formatted text on both video display and printer. GDI+ acts as an intermediate layer between applications and device drivers for rendering twodimensional graphics, images and text.

Techopedia explains Graphics Device Interface + (GDI+)


GDI was the tool by which the what you see is what you get (WYSIWYG) capability was provided in Windows applications. GDI+ is an enhanced C++-based version of GDI. GDI+ helps the developer to write device-independent applications by hiding the details of graphic hardware. It also provides graphic services in a more optimized manner than earlier versions. Due to its object-oriented structure and statelessness, GDI+ provides an easy and flexible interface developers can use to interact with an application's graphical user interface (GUI). Although GDI+ is slightly slower than GDI, its rendering quality is better. The GDI+ services can be categorized into 2D vector graphics, imaging and typography. Vector graphics include drawing primitives like rectangles, lines and curves. These primitives are drawn using objects of a specific class, which has all the information required. Imaging involves displaying complex images that cannot be displayed using vector graphics and performing image operations such as stretching and skewing. Simple text can be printed in multiple fonts, sizes and colors using typography services of GDI+. GDI+ has an internal structure that consists of about 40 extensible managed classes, 50 enumerations and six structures. GDI+ uses the concept of graphics context, which is similar to the device context used by GDI. Graphics context is represented by classes and graphics containing details of drawing in a window, but not the information about font, color, etc. By passing the required formatting information to a graphics object's methods for drawing, there is no need to maintain the state, which helps to optimize rendering performance. The features included in GDI+ are:
y y y y y y

Gradient brushes used for filling shapes, paths and regions using linear and path gradient pushes Cardinal splines for creating larger curves formed out of individual curves Independent path objects for drawing a path multiple times A matrix object tool for transforming (rotating, translating, etc.) graphics Regions stored in world coordinates format, which allows them to undergo any transformation stored in a transformation matrix Alpha blending to specify the transparency of the fill color

y y

Multiple image formats (BMP, IMG, TIFF, etc.) supported by providing classes to load, save and manipulate them Sub-pixel anti-aliasing to render text with a smoother appearance on a liquid crystal display (LCD) screen

You might also like