■ BitmapImage 클래스의 DecodePixelWidth/DecodePixelHeight 속성을 사용해 비트맵 이미지 객체를 만드는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 |
using System; using Microsoft.UI.Xaml.Media.Imaging; BitmapImage bitmapImage = new BitmapImage(new Uri("ms-appx:///Assets/landscape.png")); bitmapImage.DecodePixelWidth = 800; bitmapImage.DecodePixelHeight = 600; |