Initializes a new DrawStarCommand class object with explicit parameters.
public DrawStarCommand(
Leadtools.LeadPoint centerPoint,
int spoke,
int starWidth,
int starHeight,
int holeSize,
int phase,
int angle,
int distanceOpacity,
int spokeDivision,
int angleOpacity,
int borderOpacity,
Leadtools.RasterColor lowerColorFill,
Leadtools.RasterColor upperColorFill,
int opacity,
Leadtools.Imageprocessing.Specialeffects.DrawStarCommandFlags flags
)
Public Function New( _
ByVal centerPoint As Leadtools.LeadPoint, _
ByVal spoke As Integer, _
ByVal starWidth As Integer, _
ByVal starHeight As Integer, _
ByVal holeSize As Integer, _
ByVal phase As Integer, _
ByVal angle As Integer, _
ByVal distanceOpacity As Integer, _
ByVal spokeDivision As Integer, _
ByVal angleOpacity As Integer, _
ByVal borderOpacity As Integer, _
ByVal lowerColorFill As Leadtools.RasterColor, _
ByVal upperColorFill As Leadtools.RasterColor, _
ByVal opacity As Integer, _
ByVal flags As Leadtools.Imageprocessing.Specialeffects.DrawStarCommandFlags _
)
public DrawStarCommand(
Leadtools.LeadPoint centerPoint,
int spoke,
int starWidth,
int starHeight,
int holeSize,
int phase,
int angle,
int distanceOpacity,
int spokeDivision,
int angleOpacity,
int borderOpacity,
Leadtools.RasterColor lowerColorFill,
Leadtools.RasterColor upperColorFill,
int opacity,
Leadtools.Imageprocessing.Specialeffects.DrawStarCommandFlags flags
)
function DrawStarCommand(
centerPoint ,
spoke ,
starWidth ,
starHeight ,
holeSize ,
phase ,
angle ,
distanceOpacity ,
spokeDivision ,
angleOpacity ,
borderOpacity ,
lowerColorFill ,
upperColorFill ,
opacity ,
flags
)
public:
DrawStarCommand(
Leadtools.LeadPoint centerPoint,
int spoke,
int starWidth,
int starHeight,
int holeSize,
int phase,
int angle,
int distanceOpacity,
int spokeDivision,
int angleOpacity,
int borderOpacity,
Leadtools.RasterColor lowerColorFill,
Leadtools.RasterColor upperColorFill,
int opacity,
Leadtools.Imageprocessing.Specialeffects.DrawStarCommandFlags flags
)
centerPoint
Point structure that contains the star center.
spoke
Number of spokes or rays directed inside or outside the star. This parameter only accepts positive values.
starWidth
Star width. This parameter only accepts positive values.
starHeight
Star height. This parameter only accepts positive values.
holeSize
The hole size. This value is given as a percent of the whole star from which the rays start or in which they end. The valid range is from 0 to 100.
phase
Angle to shift the star's rays. This value is given in hundredths of a degree (+/-). This can be a number from 0 to 36,000. A positive value will rotate the rays clockwise, while a negative value will rotate the rays counter-clockwise.
angle
Angle to rotate the star. This value is given in hundredths of a degree (+/-). This can be a number from 0 to 36,000. A positive value will rotate the star clockwise, while a negative value will rotate the star counter-clockwise.
distanceOpacity
Percent of feathering in towards or outward from the spoke center. The valid range is from -100 to 100.
spokeDivision
The percent by which to increment or decrement the size of the low part spoke. The valid range is from -100 to 100.
angleOpacity
Percent of feathering in towards or outward from the spoke border. The valid range is from -100 to 100.
borderOpacity
Transparency, in percent, of the spoke border. The valid range is from -100 to 100.
lowerColorFill
Lower spoke side color.
upperColorFill
Upper spoke side color.
opacity
Transparency, in percent, between the star and the affected image. The valid range is from 0 to 100.
flags
Flags that indicate the direction of the rays.
Run the DrawStarCommand on an image.
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.SpecialEffects
<TestMethod()> _
Public Sub DrawStarConstructorExample()
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
command = New DrawStarCommand(New LeadPoint(CType((leadImage.Width / 2), Integer), CType((leadImage.Height / 2), Integer)), 5, CType((leadImage.Width / 2), Integer), CType((leadImage.Height / 2), Integer), 50, 0, 0, 0, -50, -50, 50, _
New RasterColor(255, 0, 0), New RasterColor(0, 0, 255), 100, 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:\Users\Public\Documents\LEADTOOLS Images"
End Class
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.SpecialEffects;
public void DrawStarConstructorExample()
{
// 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( new LeadPoint(image.Width/2, image.Height/2), 5, image.Width/2, image.Height/2, 50, 0, 0, 0, -50, -50, 50, new RasterColor(255, 0, 0), new RasterColor(0, 0, 255), 100, 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:\Users\Public\Documents\LEADTOOLS Images";
}
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.SpecialEffects;
public async Task DrawStarConstructorExample()
{
// 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
DrawStarCommand command = new DrawStarCommand( LeadPointHelper.Create(image.Width/2, image.Height/2), 5, image.Width/2, image.Height/2, 50, 0, 0, 0, -50, -50, 50, RasterColorHelper.Create(255, 0, 0), RasterColorHelper.Create(0, 0,
255), 100, DrawStarCommandFlags.Inside);
command.Run(image);
string destFileName = @"result.bmp";
StorageFile saveFile = await Tools.AppLocalFolder.CreateFileAsync(destFileName);
await codecs.SaveAsync(image, LeadStreamFactory.Create(saveFile), RasterImageFormat.Bmp, 24);
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.