■ TransformedBitmap 엘리먼트의 Source 속성을 사용하는 방법을 보여준다.
▶ 예제 코드 (XAML)
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 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="600" Height="450" Title="TransformedBitmap 엘리먼트 : Source 속성 사용하기"> <Grid> <Image> <Image.Source> <TransformedBitmap> <TransformedBitmap.Transform> <RotateTransform Angle="90" /> </TransformedBitmap.Transform> <TransformedBitmap.Source> <FormatConvertedBitmap DestinationFormat="Gray2"> <FormatConvertedBitmap.Source> <CroppedBitmap SourceRect="0 0 300 300" Source= "c:\\sample.jpg" /> </FormatConvertedBitmap.Source> </FormatConvertedBitmap> </TransformedBitmap.Source> </TransformedBitmap> </Image.Source> </Image> </Grid> </Window> |