LEADTOOLS Image Processing (Leadtools.ImageProcessing.SpecialEffects assembly)

ShadowCommand Constructor(ShadowCommandAngle,Int32,ShadowCommandType)

Show in webframe
Example 







Angle value indicating the direction of the light source producing the shadow.
Threshold value used to determine which pixels will be affected . Valid values range from 0 through 255. When Type = ShadowCommandType.ColoredShadow, any component (R, G, or B) of a pixel with a value less than the Threshold value is not affected. When Type = ShadowCommandType.GrayShadow, any pixel where the master channel value is less than the Threshold value is not affected.
Type of the shadow.
Initializes a new ShadowCommand class object with explicit parameters.
Syntax
public ShadowCommand( 
   ShadowCommandAngle angle,
   int threshold,
   ShadowCommandType type
)
'Declaration
 
Public Function New( _
   ByVal angle As ShadowCommandAngle, _
   ByVal threshold As Integer, _
   ByVal type As ShadowCommandType _
)
'Usage
 
Dim angle As ShadowCommandAngle
Dim threshold As Integer
Dim type As ShadowCommandType
 
Dim instance As New ShadowCommand(angle, threshold, type)
public ShadowCommand( 
   ShadowCommandAngle angle,
   int threshold,
   ShadowCommandType type
)

            

            
function ShadowCommand( 
   angle ,
   threshold ,
   type 
)
public:
ShadowCommand( 
   ShadowCommandAngle angle,
   int threshold,
   ShadowCommandType type
)

Parameters

angle
Angle value indicating the direction of the light source producing the shadow.
threshold
Threshold value used to determine which pixels will be affected . Valid values range from 0 through 255. When Type = ShadowCommandType.ColoredShadow, any component (R, G, or B) of a pixel with a value less than the Threshold value is not affected. When Type = ShadowCommandType.GrayShadow, any pixel where the master channel value is less than the Threshold value is not affected.
type
Type of the shadow.
Example
Copy Code  
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.SpecialEffects

Public Sub ShadowConstructorExample()
   Dim codecs As New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

   Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"))

   ' Prepare the command
   Dim command As ShadowCommand = New ShadowCommand(ShadowCommandAngle.SouthEast, 0, ShadowCommandType.GrayShadow)
   ' Apply  shadow effect to the image.
   command.Run(leadImage)
   codecs.Save(leadImage, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24)

End Sub

Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.SpecialEffects;

public void ShadowConstructorExample()
{
   // Load an image
   RasterCodecs codecs = new RasterCodecs();
   codecs.ThrowExceptionsOnInvalidImages = true;

   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"));

   // Prepare the command
   ShadowCommand command = new ShadowCommand(ShadowCommandAngle.SouthEast, 0, ShadowCommandType.GrayShadow);
   // Apply  shadow effect to the image.
   command.Run(image);
   codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24);

}

static class LEAD_VARS
{
public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.SpecialEffects;

[TestMethod]
public async Task ShadowConstructorExample()
{
   // Load an image
   RasterCodecs codecs = new RasterCodecs();
   codecs.ThrowExceptionsOnInvalidImages = true;
   string srcFileName = @"Assets\Image1.cmp";
   StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);
   RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));

   // Prepare the command
   ShadowCommand command = new ShadowCommand(ShadowCommandAngle.SouthEast, 0, ShadowCommandType.GrayShadow);
   // Apply  shadow effect to the image.
   command.Run(image);

   string destFileName = @"result.bmp";
   StorageFile saveFile = await Tools.AppLocalFolder.CreateFileAsync(destFileName);
   await codecs.SaveAsync(image, LeadStreamFactory.Create(saveFile), RasterImageFormat.Bmp, 24);
}
Requirements

Target Platforms

See Also

Reference

ShadowCommand Class
ShadowCommand Members
Overload List

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.