Created
April 2, 2018 04:03
-
-
Save yuvarajoo/684453657b44e1b6160546af0928145f to your computer and use it in GitHub Desktop.
Convert Bitmap to BitmapSource
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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