←Select platform

SpreadAmount Property

Summary
Gets or sets the value that indicates the amount of blur in the glow diffusion, from 0 to 100 pixels.
Syntax
C#
C++/CLI
Python
public int SpreadAmount { get; set; } 
public: 
property int SpreadAmount { 
   int get(); 
   void set (    int ); 
} 
SpreadAmount # get and set (DiffuseGlowCommand) 

Property Value

Value that indicates the amount of blur in the glow diffusion, from 0 to 100 pixels. Possible values range from 0 - 1000. A value of 0 indicates none of the glow is diffused, whereas a value of 1000 indicates maximum diffusion.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.SpecialEffects; 
 
 
public void DiffuseGlowCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "sample5.cmp")); 
 
   // Prepare the command 
   RasterColor fillColor = new RasterColor(255, 255, 255); 
   DiffuseGlowCommand command = new DiffuseGlowCommand(); 
   command.GlowAmount = 50; 
   command.ClearAmount = 50; 
   command.SpreadAmount = 10; 
   command.WhiteNoiseRange = 10; 
   command.GlowColor = fillColor; 
   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:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.SpecialEffects Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.