Mega Code Archive

 
Categories / C# / WPF
 

Embossed Effect with EmbossBitmapEffect

<Window x:Class="BitmapEffectsExample"   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"   Title="Bitmap Effects" Height="500" Width="400">     <StackPanel Margin="5,10,5,5" Grid.Column="0" Grid.Row="2">       <TextBlock Text="Original Image" Margin="5" />       <Image Width="175" Source="c:\image.jpg" Margin="5"         Grid.Column="0" Grid.Row="2" />       <TextBlock Text="Embossed Image" Margin="5" />       <Image Width="175" Source="c:\image.jpg" Margin="5">         <Image.BitmapEffect>           <EmbossBitmapEffect Relief="0.5" LightAngle="320" />         </Image.BitmapEffect>       </Image>     </StackPanel> </Window>