GDI+ lehetőséget ad raszteres (Image), bittérképes (Bitmap) és metafile-ok kezelésére.
A következő formátumokat támogatja:
Raszteres formátumok:
BMP Bitmap
GIF (Graphics Interchange Format)
JPEG (Joint Photographic Experts Group)
EXIF (Exchangeable Image File)
PNG (Portable Network Graphics)
TIFF (Tag Image File Format)
Metafile-ok, vektoros file formátumok:
WMF (Windows Metafile), csak megjeleníti lehet menteni nem.
EMF (Enhanced Metafile)
EMF+ Bővített metafile, GDI+ és/vagy GDI rekordokkal
Példa program:
private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{
Graphics myGraphics = e.Graphics;
Metafile myMetafile = new Metafile("meta_kep.emf");
Bitmap myBitmap = new Bitmap("image_kep.jpg");
myGraphics.DrawImage(myMetafile, 10, 10);
myGraphics.DrawImage(myBitmap, 500, 10);
}
Metafájl és raszteres kép beillesztése