I was wondering what the difference is between Image - Bitmap - BitmapImage in WPF and C #.Can someone help me?
Image is a basic abstract class representing images in GDI +. Bitmap is a concrete implementation of this base class.
BitmapImage is a way of representing an image in a vector graphics engine such as WPF and Silverlight. Unlike Bitmap, it is not based on GDI +. It is based on the Windows Imaging component .
Bitmap
There are ways to download BitmapImagefromBitmap .
BitmapImage
WinForms/GDI + System.Drawing.Image Bitmap.
System.Drawing.Image
WPF System.Windows.Media. ImageSource ( BitmapSource) BitmapImage.
ImageSource
BitmapSource
WPF Image, FrameworkElement, ImageSource.
Image
FrameworkElement
, ...