■ TransformedBitmap 클래스를 사용해 변환 비트맵을 생성하는 방법을 보여준다.
▶ 예제 코드 (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 |
using System.Windows; using System.Windows.Media; using System.Windows.Media.Imaging; #region 변환 비트맵 생성하기 - CreateTransformedBitmap(bitmapSource, desiredSize) /// <summary> /// 변환 비트맵 생성하기 /// </summary> /// <param name="bitmapSource">비트맵 소스</param> /// <param name="desiredSize">희망 크기</param> /// <returns>생성 변환 비트맵</returns> public TransformedBitmap CreateTransformedBitmap(BitmapSource bitmapSource, Size desiredSize) { TransformedBitmap transformedBitmap = new TransformedBitmap(); transformedBitmap.BeginInit(); transformedBitmap.Source = bitmapSource; ScaleTransform scaleTransform = new ScaleTransform ( desiredSize.Width / bitmapSource.Width, desiredSize.Height / bitmapSource.Height ); transformedBitmap.Transform = scaleTransform; transformedBitmap.EndInit(); return transformedBitmap; } #endregion |