Permalink
Fetching contributors…
Cannot retrieve contributors at this time
53 lines (51 sloc) 2.16 KB
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="ImageElementExample.FormatConvertedExample"
Title="FormatConverted Example"
Loaded="PageLoaded">
<!--<SnippetConvertedXAML1>-->
<Page.Resources>
<BitmapImage x:Key="masterImage" UriSource="pack://application:,,/sampleImages/rocks.jpg" />
</Page.Resources>
<!--</SnippetConvertedXAML1>-->
<DockPanel>
<Border DockPanel.Dock="Top" Background="Black">
<TextBlock Foreground="White" HorizontalAlignment="Stretch" FontSize="20">
Format Converting an Image Element
</TextBlock>
</Border>
<TextBlock DockPanel.Dock="Top" Style="{StaticResource Header1}">Original Image</TextBlock>
<Border DockPanel.Dock="Top" Margin="0,0,0,10">
<Image Width="200" Source="{StaticResource masterImage}" />
</Border>
<Grid Name="convertedGrid" Background="{StaticResource CheckeredBrushResource}"
DockPanel.Dock="Top"
ShowGridLines="True"
VerticalAlignment="Top"
HorizontalAlignment="Center">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<TextBlock Style="{StaticResource Header1}" Margin="5"
Grid.Column="0" Grid.Row="0">Grayscale Converted in XAML</TextBlock>
<!--<SnippetConvertedXAML2>-->
<!-- Grayscale XAML Image -->
<Image Width="200" Grid.Column="0" Grid.Row="1">
<Image.Source>
<FormatConvertedBitmap Source="/sampleImages/rocks.jpg" DestinationFormat="Gray4" />
</Image.Source>
</Image>
<!--</SnippetConvertedXAML2>-->
<TextBlock Style="{StaticResource Header1}" Margin="5"
Grid.Column="1" Grid.Row="0">
Grayscale Converted in C#
</TextBlock>
</Grid>
</DockPanel>
</Page>