What’s the difference between the a Bitmap and a WriteableBitmap? I want to display a video stream on a C# form, which would be more suitable in terms of efficiency? isn’t a normal bitmap also editable using unsafe code?
What’s the difference between the a Bitmap and a WriteableBitmap? I want to display
Share
WriteableBitmap inherits from System.Windows.Media.ImageSource
Bitmap inherits from System.Drawing.Image
Looks like Bitmap was pre wpf/silverlight where Writeablebitmap is after