Skip to content

Instantly share code, notes, and snippets.

@yuvarajoo
Created April 2, 2018 04:03
Show Gist options
  • Save yuvarajoo/684453657b44e1b6160546af0928145f to your computer and use it in GitHub Desktop.
Save yuvarajoo/684453657b44e1b6160546af0928145f to your computer and use it in GitHub Desktop.
Convert Bitmap to BitmapSource
public static BitmapSource ConvertBitmap(Bitmap source)
{
return System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(
source.GetHbitmap(),
IntPtr.Zero,
Int32Rect.Empty,
BitmapSizeOptions.FromEmptyOptions());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment