■ BitmapImage 클래스를 사용해 크기 조정 비트맵 이미지를 구하는 방법을 보여준다.
▶ BitmapImage 클래스 : 크기 조정 비트맵 이미지 구하기 예제 (C#)
1 2 3 |
BitmapImage bitmapImage = GetBitmapImage(new Uri("c:\\pinkcherries.jpg"), 200, null); |
▶ 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 29 30 31 32 33 34 35 36 37 38 39 |
using System; using System.Windows; using System.Windows.Media.Imaging; #region 크기 조정 비트맵 이미지 구하기 - GetBitmapImage(uri, pixelWidth, pixelHeight) /// <summary> /// 크기 조정 비트맵 이미지 구하기 /// </summary> /// <param name="uri">URI</param> /// <param name="pixelWidth">픽셀 너비</param> /// <param name="pixelHeight">픽셀 높이</param> /// <returns>크기 조정 비트맵 이미지</returns> public BitmapImage GetBitmapImage(Uri uri, int? pixelWidth, int? pixelHeight) { BitmapImage bitmapImage = new BitmapImage(); bitmapImage.BeginInit(); bitmapImage.UriSource = uri; if(pixelWidth.HasValue) { bitmapImage.DecodePixelWidth = pixelWidth.Value; } if(pixelHeight.HasValue) { bitmapImage.DecodePixelHeight = pixelHeight.Value; } bitmapImage.EndInit(); return bitmapImage; } #endregion |