You can use GDI+ to render images that exist as files in your applications. You do this by creating a new object of an Image class (such as Bitmap), creating a Graphics object that refers to the drawing surface you want to use, and calling the DrawImage method of the Graphics object. The image will be painted onto the drawing surface represented by the graphics class. You can use the Image Editor to create and edit image files at design time, and render them with GDI+ at run time. For more information, see Image Editor for Icons.
To render an image with GDI+
Create an object representing the image you want to display. This object must be a member of a class that inherits from Image, such as Bitmap or Metafile. An example is shown:
' Uses the System.Environment.GetFolderPath to get the path to the
' current user's MyPictures folder.
Dim myBitmap as New Bitmap _
(System.Environment.GetFolderPath _
(System.Environment.SpecialFolder.MyPictures))
// Uses the System.Environment.GetFolderPath to get the path to the
// current user's MyPictures folder.
Bitmap myBitmap = new Bitmap
(System.Environment.GetFolderPath
(System.Environment.SpecialFolder.MyPictures));
// Uses the System.Environment.GetFolderPath to get the path to the
// current user's MyPictures folder.
Bitmap^ myBitmap = gcnew Bitmap
(System::Environment::GetFolderPath
(System::Environment::SpecialFolder::MyPictures));
' Creates a Graphics object that represents the drawing surface of
' Button1.
Dim g as Graphics = Button1.CreateGraphics
// Creates a Graphics object that represents the drawing surface of
// Button1.
Graphics g = Button1.CreateGraphics();
// Creates a Graphics object that represents the drawing surface of
// Button1.
Graphics^ g = button1->CreateGraphics();
Call the DrawImage of your graphics object to render the image. You must specify both the image to be drawn, and the coordinates where it is to be drawn.
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET Desktop feedback feedback
.NET Desktop feedback is an open source project. Select a link to provide feedback:
Discover AI-powered image generators. Learn about image creation tools like Microsoft Image Creator. Understand their potential applications in the workplace and training settings and discover best practices for optimal results. Enhance your skills and transform your creative process with AI-powered image generators.
Learn about the Graphics, Pen, Brush, and Color objects, and how to perform such tasks as drawing shapes, drawing text, or displaying images in Windows Forms.
Learn how to draw lines and rectangles and construct a pen by using objects and methods in GDI+ that store attributes, such as line color, width, and style.