Initial winforms content migrated (#18)

* Merge winforms framework content to working branch (#14)

* Breadcrumb / TOC / Move net5 to net folder (#15)

* change path from net5 to net

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Add .net 5 winforms placeholder article (#16)

* added some metadata and adjusted net5 placeholder

* corrections

* corrections

* corrections

* Test1

* Swapping landing page vs concept

* fix links

* Fix links

* Fix desc
This commit is contained in:
Andy De George
2020-09-01 16:26:21 -07:00
committed by GitHub
parent 1a27c9b107
commit c0ba284473
1557 changed files with 129980 additions and 13 deletions
@@ -0,0 +1,36 @@
---
title: "Images, Bitmaps, and Metafiles"
ms.date: "03/30/2017"
helpviewer_keywords:
- "metafiles [Windows Forms], about metafiles"
- "bitmaps [Windows Forms], about bitmaps"
- "images [Windows Forms], about images"
- "Windows Forms, images"
ms.assetid: 7152b45b-a55c-49bc-8c78-ae002a844f71
---
# Images, Bitmaps, and Metafiles
The `Image` class is an abstract base class that provides methods for working with raster images (bitmaps) and vector images (metafiles). The `Bitmap` class and the <xref:System.Drawing.Imaging.Metafile> class both inherit from the `Image` class. The `Bitmap` class expands on the capabilities of the `Image` class by providing additional methods for loading, saving, and manipulating raster images. The <xref:System.Drawing.Imaging.Metafile> class expands on the capabilities of the `Image` class by providing additional methods for recording and examining vector images.
## In This Section
[Types of Bitmaps](types-of-bitmaps.md)
Discusses the various image formats.
[Metafiles in GDI+](metafiles-in-gdi.md)
Discusses GDI+ support for metafiles.
[Drawing, Positioning, and Cloning Images in GDI+](drawing-positioning-and-cloning-images-in-gdi.md)
Discusses methods for drawing vector and raster images with managed code.
[Cropping and Scaling Images in GDI+](cropping-and-scaling-images-in-gdi.md)
Discusses methods for cropping and scaling vector and raster images with managed code
## Reference
<xref:System.Drawing.Image>
Describes this class and has links to all of its members.
<xref:System.Drawing.Bitmap>
Describes this class and has links to all of its members
## Related Sections
[Working with Images, Bitmaps, Icons, and Metafiles](working-with-images-bitmaps-icons-and-metafiles.md)
Contains links to topics that demonstrate how to use images in your application.