Files
docs-desktop/dotnet-desktop-guide/framework/winforms/advanced/overview-of-graphics.md
T
Andy De George 99e90fa162 Update metadata rules and individual articles (#142)
* Add conceptual topic type for framework

* Add NET WPF article topic types

* Framework winforms overview topic types

* Update metadata

* Update walkthrough-my-first-wpf-desktop-application.md
2020-12-03 09:58:46 -08:00

1.5 KiB

title, ms.date, ms.topic, helpviewer_keywords, ms.assetid
title ms.date ms.topic helpviewer_keywords ms.assetid
Overview of Graphics 03/30/2017 overview
graphics [Windows Forms], using managed interface
graphics [Windows Forms], about graphics
a602aef8-a8c8-4c36-9816-74e7bad96a68

Overview of Graphics

GDI+ is an application programming interface (API) that forms the subsystem of the Microsoft Windows operating system. GDI+ is responsible for displaying information on screens and printers. As its name suggests, GDI+ is the successor to GDI, the Graphics Device Interface included with earlier versions of Windows.

Managed Class Interface

The GDI+ API is exposed through a set of classes deployed as managed code. This set of classes is called the managed class interface to GDI+. The following namespaces make up the managed class interface:

With a Graphics Device Interface, such as GDI+, you can display information on a screen or printer without having to be concerned about the details of a particular display device. The programmer makes calls to methods provided by GDI+ classes. Those methods, in turn, make the appropriate calls to specific device drivers. GDI+ insulates the application from the graphics hardware. It is this insulation that enables a programmer to create device-independent applications.

See also