public class DrawStarCommand : RasterCommand
Public Class DrawStarCommand
Inherits RasterCommand
public ref class DrawStarCommand : public RasterCommand
For more information, refer to Correcting Colors.
Run the DrawStarCommand on an image.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.SpecialEffects;
public void DrawStarCommandExample()
{
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.ThrowExceptionsOnInvalidImages = true;
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\Image3.cmp"));
// Prepare the command
DrawStarCommand command = new DrawStarCommand();
command.CenterPoint = new LeadPoint(image.Width / 2, image.Height / 2);
command.Spoke = 5;
command.StarWidth = image.Width / 2;
command.StarHeight = image.Height / 2;
command.HoleSize = 50;
command.Phase = 0;
command.Angle = 0;
command.DistanceOpacity = 0;
command.SpokeDivision = 0;
command.AngleOpacity = 0;
command.BorderOpacity = 0;
command.LowerColorFill = new RasterColor(255, 0, 0);
command.UpperColorFill = new RasterColor(0, 0, 255);
command.Opacity = 100;
command.Flags = DrawStarCommandFlags.Inside;
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:\LEADTOOLS21\Resources\Images";
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.SpecialEffects
Public Sub DrawStarCommandExample()
Dim codecs As New RasterCodecs()
codecs.ThrowExceptionsOnInvalidImages = True
Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\Image3.cmp"))
' Prepare the command
Dim command As DrawStarCommand = New DrawStarCommand
command.CenterPoint = New LeadPoint(leadImage.Width \ 2, leadImage.Height \ 2)
command.Spoke = 5
command.StarWidth = leadImage.Width \ 2
command.StarHeight = leadImage.Height \ 2
command.HoleSize = 50
command.Phase = 0
command.Angle = 0
command.DistanceOpacity = 0
command.SpokeDivision = 0
command.AngleOpacity = 0
command.BorderOpacity = 0
command.LowerColorFill = New RasterColor(255, 0, 0)
command.UpperColorFill = New RasterColor(0, 0, 255)
command.Opacity = 100
command.Flags = DrawStarCommandFlags.Inside
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:\LEADTOOLS21\Resources\Images"
End Class
Leadtools.ImageProcessing.SpecialEffects Namespace
Leadtools.ImageProcessing.Effects.AddNoiseCommand
Leadtools.ImageProcessing.Effects.EmbossCommand
Leadtools.ImageProcessing.Effects.MosaicCommand
Leadtools.ImageProcessing.Effects.MotionBlurCommand
Leadtools.ImageProcessing.Effects.OilifyCommand
Leadtools.ImageProcessing.Color.PosterizeCommand
Leadtools.ImageProcessing.Color.RemoveRedEyeCommand
Leadtools.ImageProcessing.Color.SolarizeCommand
Leadtools.ImageProcessing.Effects.CubismCommand
Leadtools.ImageProcessing.Color.SampleTargetCommand
Leadtools.ImageProcessing.Effects.DisplacementCommand
Leadtools.ImageProcessing.Core.HalfTonePatternCommand
Leadtools.ImageProcessing.Effects.MaskConvolutionCommand
Leadtools.ImageProcessing.Effects.OffsetCommand
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document