■ BitmapImage 클래스를 사용해 비트맵 이미지를 구하는 방법을 보여준다.
▶ 예제 코드 (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 |
using System; using System.Windows.Media.Imaging; #region 비트맵 이미지 구하기 - GetBitmapImage(sourceURI) /// <summary> /// 비트맵 이미지 구하기 /// </summary> /// <param name="sourceURI">소스 URI</param> /// <returns>비트맵 이미지</returns> public BitmapImage GetBitmapImage(Uri sourceURI) { BitmapImage bitmapImage = new BitmapImage(); bitmapImage.BeginInit(); bitmapImage.CacheOption = BitmapCacheOption.OnDemand; bitmapImage.CreateOptions = BitmapCreateOptions.DelayCreation; bitmapImage.UriSource = sourceURI; bitmapImage.EndInit(); return bitmapImage; } #endregion |
※ 이미지 처리 속도가 가장 빠르다.
※ 이미지를 사용하는 프로세스나 다른 프로세스에서 해당 이미지를 변경할 수 없다.