Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 2.11 KB

-gdiplus-using-image-encoders-and-decoders-use.md

File metadata and controls

42 lines (30 loc) · 2.11 KB
description ms.assetid title ms.topic ms.date
Windows GDI+ provides the Image class and the Bitmap class for storing images in memory and manipulating images in memory.
f9a5b4b1-4e25-42c8-a96b-a3104841e5f3
Using Image Encoders and Decoders
article
05/31/2018

Using Image Encoders and Decoders

Windows GDI+ provides the Image class and the Bitmap class for storing images in memory and manipulating images in memory. GDI+ writes images to disk files with the help of image encoders and loads images from disk files with the help of image decoders. An encoder translates the data in an Image or Bitmap object into a designated disk file format. A decoder translates the data in a disk file to the format required by the Image and Bitmap objects. GDI+ has built-in encoders and decoders that support the following file types:

  • BMP
  • GIF
  • JPEG
  • PNG
  • TIFF

GDI+ also has built-in decoders that support the following file types:

  • WMF
  • EMF
  • ICON

The following topics discuss encoders and decoders in more detail: