Leadtools.ImageProcessing.SpecialEffects Namespace > DrawStarCommand Class > DrawStarCommand Constructor : DrawStarCommand Constructor(LeadPoint,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,RasterColor,RasterColor,Int32,DrawStarCommandFlags) |
public DrawStarCommand( LeadPoint centerPoint, int spoke, int starWidth, int starHeight, int holeSize, int phase, int angle, int distanceOpacity, int spokeDivision, int angleOpacity, int borderOpacity, RasterColor lowerColorFill, RasterColor upperColorFill, int opacity, DrawStarCommandFlags flags )
'Declaration Public Function New( _ ByVal centerPoint As 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 RasterColor, _ ByVal upperColorFill As RasterColor, _ ByVal opacity As Integer, _ ByVal flags As DrawStarCommandFlags _ )
'Usage Dim centerPoint As LeadPoint Dim spoke As Integer Dim starWidth As Integer Dim starHeight As Integer Dim holeSize As Integer Dim phase As Integer Dim angle As Integer Dim distanceOpacity As Integer Dim spokeDivision As Integer Dim angleOpacity As Integer Dim borderOpacity As Integer Dim lowerColorFill As RasterColor Dim upperColorFill As RasterColor Dim opacity As Integer Dim flags As DrawStarCommandFlags Dim instance As New DrawStarCommand(centerPoint, spoke, starWidth, starHeight, holeSize, phase, angle, distanceOpacity, spokeDivision, angleOpacity, borderOpacity, lowerColorFill, upperColorFill, opacity, flags)
public DrawStarCommand( LeadPoint centerPoint, int spoke, int starWidth, int starHeight, int holeSize, int phase, int angle, int distanceOpacity, int spokeDivision, int angleOpacity, int borderOpacity, RasterColor lowerColorFill, RasterColor upperColorFill, int opacity, DrawStarCommandFlags flags )
function DrawStarCommand( centerPoint , spoke , starWidth , starHeight , holeSize , phase , angle , distanceOpacity , spokeDivision , angleOpacity , borderOpacity , lowerColorFill , upperColorFill , opacity , flags )
public: DrawStarCommand( LeadPoint centerPoint, int spoke, int starWidth, int starHeight, int holeSize, int phase, int angle, int distanceOpacity, int spokeDivision, int angleOpacity, int borderOpacity, RasterColor lowerColorFill, RasterColor upperColorFill, int opacity, DrawStarCommandFlags flags )
Public Sub DrawStarConstructorExample() 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 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
public void DrawStarConstructorExample() { // Load an image RasterCodecs codecs = new RasterCodecs(); codecs.ThrowExceptionsOnInvalidImages = true; RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg")); // 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"; }
[TestMethod] 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); }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2