■ BitmapSource 클래스를 사용해 WINFORM Bitmap 객체에서 비트맵 소스를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
using System; using System.Drawing; using System.Windows.Interop; using System.Windows.Media.Imaging; #region 비트맵 소스 구하기 - GetBitmapSource(bitmap) /// <summary> /// 비트맵 소스 구하기 /// </summary> /// <param name="bitmap">WINFORM 비트맵</param> /// <returns>비트맵 소스</returns> public BitmapSource GetBitmapSource(Bitmap bitmap) { IntPtr bitmapHandle = bitmap.GetHbitmap(); BitmapSource bitmapSource = Imaging.CreateBitmapSourceFromHBitmap ( bitmapHandle, IntPtr.Zero, Int32Rect.Empty, System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions() ); return bitmapSource; } #endregion |