LEADTOOLS WPF and Silverlight (Leadtools.Windows.Media.Effects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
EmbossEffect Class
See Also  Members  
Leadtools.Windows.Media.Effects Namespace : EmbossEffect Class



The EmbossEffect Class supports WPF/Silverlight.

Applies an emboss effect to an image, letting you specify the depth and shift of the effect. Supported in Silverlight

Object Model

EmbossEffect Class

Syntax

Visual Basic (Declaration) 
Public Class EmbossEffect 
   Inherits System.Windows.Media.Effects.ShaderEffect
   Implements IAnimatable 
Visual Basic (Usage)Copy Code
Dim instance As EmbossEffect
C# 
public class EmbossEffect : System.Windows.Media.Effects.ShaderEffect, IAnimatable  
C++/CLI 
public ref class EmbossEffect : public System.Windows.Media.Effects.ShaderEffect, IAnimatable  

Example

Visual BasicCopy Code
Class EmbossEffectExampleWindow
      Inherits Window
      Public Sub New()
         Dim sp As New StackPanel()
         Content = sp
         Dim theViewer As New ImageViewer()

         theViewer.HorizontalAlignment = HorizontalAlignment.Center
         theViewer.VerticalAlignment = VerticalAlignment.Top
         theViewer.ImageHorizontalAlignment = HorizontalAlignment.Left
         theViewer.ImageVerticalAlignment = VerticalAlignment.Top

         sp.Children.Add(theViewer)

         ' Create the sliders
         Dim tb As New TextBlock()
         tb.HorizontalAlignment = HorizontalAlignment.Center
         tb.Text = "Amount:"
         sp.Children.Add(tb)

         Dim amountSlider As New Slider()
         amountSlider.Minimum = 0.0
         amountSlider.Maximum = 1.0
         amountSlider.Width = 400
         amountSlider.Orientation = Orientation.Horizontal
         amountSlider.IsSnapToTickEnabled = True
         amountSlider.TickPlacement = System.Windows.Controls.Primitives.TickPlacement.BottomRight
         amountSlider.TickFrequency = 0.1
         amountSlider.AutoToolTipPrecision = 2
         amountSlider.AutoToolTipPlacement = System.Windows.Controls.Primitives.AutoToolTipPlacement.BottomRight

         sp.Children.Add(amountSlider)

         tb = New TextBlock()
         tb.HorizontalAlignment = HorizontalAlignment.Center
         tb.Text = "Width:"
         sp.Children.Add(tb)

         Dim widthSlider As New Slider()
         widthSlider.Minimum = 0.0
         widthSlider.Maximum = 1.0
         widthSlider.Width = 400
         widthSlider.Orientation = Orientation.Horizontal
         widthSlider.IsSnapToTickEnabled = True
         widthSlider.TickPlacement = System.Windows.Controls.Primitives.TickPlacement.BottomRight
         widthSlider.TickFrequency = 0.1
         widthSlider.AutoToolTipPrecision = 2
         widthSlider.AutoToolTipPlacement = System.Windows.Controls.Primitives.AutoToolTipPlacement.BottomRight

         sp.Children.Add(widthSlider)

         ' Load an image into the viewer
         theViewer.Source = New BitmapImage(New Uri(System.IO.Path.Combine(LEAD_VARS.ImagesDir, "Cannon.jpg")))

         ' Create the effect
         Dim effect As New EmbossEffect()
         effect.Amount = 0.5
         effect.Width = 0.003
         theViewer.ImageEffect = effect

         ' Bind the properties
         Dim bind As New Binding()
         bind.Source = effect
         bind.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged
         bind.Path = New PropertyPath("Amount")
         amountSlider.SetBinding(Slider.ValueProperty, bind)

         bind = New Binding()
         bind.Source = effect
         bind.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged
         bind.Path = New PropertyPath("Width")
         widthSlider.SetBinding(Slider.ValueProperty, bind)

         Title = "Using EmbossEffect"
      End Sub
   End Class

Public NotInheritable Class LEAD_VARS
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
C#Copy Code
class EmbossEffectExampleWindow : Window
   {
      public EmbossEffectExampleWindow()
      {
         StackPanel sp = new StackPanel();
         Content = sp;
         ImageViewer theViewer = new ImageViewer();

         theViewer.HorizontalAlignment = HorizontalAlignment.Center;
         theViewer.VerticalAlignment = VerticalAlignment.Top;
         theViewer.ImageHorizontalAlignment = HorizontalAlignment.Left;
         theViewer.ImageVerticalAlignment = VerticalAlignment.Top;

         sp.Children.Add(theViewer);

         // Create the sliders
         TextBlock tb = new TextBlock();
         tb.HorizontalAlignment = HorizontalAlignment.Center;
         tb.Text = "Amount:";
         sp.Children.Add(tb);

         Slider amountSlider = new Slider();
         amountSlider.Minimum = 0.0;
         amountSlider.Maximum = 1.0;
         amountSlider.Width = 400;
         amountSlider.Orientation = Orientation.Horizontal;
         amountSlider.IsSnapToTickEnabled = true;
         amountSlider.TickPlacement = System.Windows.Controls.Primitives.TickPlacement.BottomRight;
         amountSlider.TickFrequency = 0.1;
         amountSlider.AutoToolTipPrecision = 2;
         amountSlider.AutoToolTipPlacement = System.Windows.Controls.Primitives.AutoToolTipPlacement.BottomRight;

         sp.Children.Add(amountSlider);

         tb = new TextBlock();
         tb.HorizontalAlignment = HorizontalAlignment.Center;
         tb.Text = "Width:";
         sp.Children.Add(tb);

         Slider widthSlider = new Slider();
         widthSlider.Minimum = 0.0;
         widthSlider.Maximum = 1.0;
         widthSlider.Width = 400;
         widthSlider.Orientation = Orientation.Horizontal;
         widthSlider.IsSnapToTickEnabled = true;
         widthSlider.TickPlacement = System.Windows.Controls.Primitives.TickPlacement.BottomRight;
         widthSlider.TickFrequency = 0.1;
         widthSlider.AutoToolTipPrecision = 2;
         widthSlider.AutoToolTipPlacement = System.Windows.Controls.Primitives.AutoToolTipPlacement.BottomRight;

         sp.Children.Add(widthSlider);

         // Load an image into the viewer
         theViewer.Source = new BitmapImage(new Uri(System.IO.Path.Combine(LEAD_VARS.ImagesDir,"Cannon.jpg")));

         // Create the effect
         EmbossEffect effect = new EmbossEffect();
         effect.Amount = 0.5;
         effect.Width = 0.003;
         theViewer.ImageEffect = effect;

         // Bind the properties
         Binding bind = new Binding();
         bind.Source = effect;
         bind.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
         bind.Path = new PropertyPath("Amount");
         amountSlider.SetBinding(Slider.ValueProperty, bind);

         bind = new Binding();
         bind.Source = effect;
         bind.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
         bind.Path = new PropertyPath("Width");
         widthSlider.SetBinding(Slider.ValueProperty, bind);

         Title = "Using EmbossEffect";
      }
   }

static class LEAD_VARS
{
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
SilverlightCSharpCopy Code
class EmbossEffectExampleWindow : UserControl
{
   public EmbossEffectExampleWindow()
   {
      StackPanel sp = new StackPanel();
      Content = sp;
      ImageViewer theViewer = new ImageViewer();

      theViewer.HorizontalAlignment = HorizontalAlignment.Center;
      theViewer.VerticalAlignment = VerticalAlignment.Top;
      theViewer.ImageHorizontalAlignment = HorizontalAlignment.Left;
      theViewer.ImageVerticalAlignment = VerticalAlignment.Top;

      sp.Children.Add(theViewer);

      // Create the sliders
      TextBlock tb = new TextBlock();
      tb.HorizontalAlignment = HorizontalAlignment.Center;
      tb.Text = "Amount:";
      sp.Children.Add(tb);

      Slider amountSlider = new Slider();
      amountSlider.Minimum = 0.0;
      amountSlider.Maximum = 1.0;
      amountSlider.Width = 400;
      amountSlider.Orientation = Orientation.Horizontal;

      sp.Children.Add(amountSlider);

      tb = new TextBlock();
      tb.HorizontalAlignment = HorizontalAlignment.Center;
      tb.Text = "Width:";
      sp.Children.Add(tb);

      Slider widthSlider = new Slider();
      widthSlider.Minimum = 0.0;
      widthSlider.Maximum = 1.0;
      widthSlider.Width = 400;
      widthSlider.Orientation = Orientation.Horizontal;

      sp.Children.Add(widthSlider);

      // Load an image into the viewer
      theViewer.Source = new BitmapImage(new Uri(LeadtoolsExamples.Common.ImagesPath.Path + "Cannon.jpg"));

      // Create the effect
      EmbossEffect effect = new EmbossEffect();
      effect.Amount = 0.5;
      effect.Width = 0.003;
      theViewer.ImageEffect = effect;

      // Bind the properties
      Binding bind = new Binding();
      bind.Source = effect;
      bind.UpdateSourceTrigger = UpdateSourceTrigger.Default;
      bind.Path = new PropertyPath("Amount");
      amountSlider.SetBinding(Slider.ValueProperty, bind);

      bind = new Binding();
      bind.Source = effect;
      bind.UpdateSourceTrigger = UpdateSourceTrigger.Default;
      bind.Path = new PropertyPath("Width");
      widthSlider.SetBinding(Slider.ValueProperty, bind);
   }
}
SilverlightVBCopy Code
Class EmbossEffectExampleWindow
   Inherits UserControl
   Public Sub New()
      Dim sp As New StackPanel()
      Content = sp
      Dim theViewer As New ImageViewer()

      theViewer.HorizontalAlignment = HorizontalAlignment.Center
      theViewer.VerticalAlignment = VerticalAlignment.Top
      theViewer.ImageHorizontalAlignment = HorizontalAlignment.Left
      theViewer.ImageVerticalAlignment = VerticalAlignment.Top

      sp.Children.Add(theViewer)

      ' Create the sliders
      Dim tb As New TextBlock()
      tb.HorizontalAlignment = HorizontalAlignment.Center
      tb.Text = "Amount:"
      sp.Children.Add(tb)

      Dim amountSlider As New Slider()
      amountSlider.Minimum = 0.0
      amountSlider.Maximum = 1.0
      amountSlider.Width = 400
      amountSlider.Orientation = Orientation.Horizontal

      sp.Children.Add(amountSlider)

      tb = New TextBlock()
      tb.HorizontalAlignment = HorizontalAlignment.Center
      tb.Text = "Width:"
      sp.Children.Add(tb)

      Dim widthSlider As New Slider()
      widthSlider.Minimum = 0.0
      widthSlider.Maximum = 1.0
      widthSlider.Width = 400
      widthSlider.Orientation = Orientation.Horizontal

      sp.Children.Add(widthSlider)

      ' Load an image into the viewer
      theViewer.Source = New BitmapImage(New Uri(LeadtoolsExamples.Common.ImagesPath.Path + "Cannon.jpg"))

      ' Create the effect
      Dim effect As New EmbossEffect()
      effect.Amount = 0.5
      effect.Width = 0.003
      theViewer.ImageEffect = effect

      ' Bind the properties
      Dim bind As New Binding()
      bind.Source = effect
      bind.UpdateSourceTrigger = UpdateSourceTrigger.Default
      bind.Path = New PropertyPath("Amount")
      amountSlider.SetBinding(Slider.ValueProperty, bind)

      bind = New Binding()
      bind.Source = effect
      bind.UpdateSourceTrigger = UpdateSourceTrigger.Default
      bind.Path = New PropertyPath("Width")
      widthSlider.SetBinding(Slider.ValueProperty, bind)
   End Sub
End Class
XAMLCopy Code
<Window x:Class="EmbossEffectExample" Height="600" Width="800" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:leadControls="clr-namespace:Leadtools.Windows.Controls;assembly=Leadtools.Windows.Controls" xmlns:leadEffects="clr-namespace:Leadtools.Windows.Media.Effects;assembly=Leadtools.Windows.Media.Effects">
  <StackPanel>
    <leadControls:ImageViewer HorizontalAlignment="Center" VerticalAlignment="Top" ImageHorizontalAlignment="Left" ImageVerticalAlignment="Top" Source="file:///c:\users\Public\Documents\LEADTOOLS Images\cannon.jpg">
      <leadControls:ImageViewer.ImageEffect>
        <leadEffects:EmbossEffect Amount="{Binding Value, ElementName=AmountSlider, UpdateSourceTrigger=PropertyChanged}" Width="{Binding Value, ElementName=WidthSlider, UpdateSourceTrigger=PropertyChanged}"></leadEffects:EmbossEffect>
      </leadControls:ImageViewer.ImageEffect>
    </leadControls:ImageViewer>
    <TextBlock HorizontalAlignment="Center" Text="Amount:" />
    <Slider x:Name="AmountSlider" Minimum="0.0" Maximum="1.0" TickFrequency="0.1" Width="400" Orientation="Horizontal" IsSnapToTickEnabled="True" TickPlacement="BottomRight" AutoToolTipPrecision="2" AutoToolTipPlacement="BottomRight"></Slider>
    <TextBlock HorizontalAlignment="Center" Text="Width:" />
    <Slider x:Name="WidthSlider" Minimum="0.0" Maximum="1.0" TickFrequency="0.1" Width="400" Orientation="Horizontal" IsSnapToTickEnabled="True" TickPlacement="BottomRight" AutoToolTipPrecision="2" AutoToolTipPlacement="BottomRight"></Slider>
  </StackPanel>
</Window>

Inheritance Hierarchy

System.Object
   System.Windows.Threading.DispatcherObject
      System.Windows.DependencyObject
         System.Windows.Freezable
            System.Windows.Media.Animation.Animatable
               System.Windows.Media.Effects.Effect
                  System.Windows.Media.Effects.ShaderEffect
                     Leadtools.Windows.Media.Effects.EmbossEffect

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also