public DiffuseGlowCommand(
int glowAmount,
int clearAmount,
int spreadAmount,
int whiteNoiseRange,
RasterColor glowColor
)
public:
DiffuseGlowCommand(
int glowAmount,
int clearAmount,
int spreadAmount,
int whiteNoiseRange,
RasterColor glowColor
)
__init__(self,glowAmount,clearAmount,spreadAmount,whiteNoiseRange,glowColor) # Overloaded constructor
glowAmount
Glow intensity, expressed in tenths of a percent. Possible values range from -1000 - 1000. Use positive values to add glow to the brighter regions of the image, and negative values to add glow to the darker regions of the image.
clearAmount
Value that represents how deeply the glow will penetrate into the non-glowing areas, expressed in tenths of a percent. Possible values range from 0 - 1000. A value of 0 indicates total glow diffusion, whereas a value of 1000 indicates the glow does not penetrate into any of the non-glowing areas.
spreadAmount
Value that represents 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.
whiteNoiseRange
Percent of the image to be covered with added pixels, expressed in tenths of a percent. The pixels will be added randomly. Possible values range from 0 - 1000.
glowColor
The RasterColor value that specifies the glow color.
Run the DiffuseGlowCommand on an image and applies the Diffuse Glow filter.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.SpecialEffects;
public void DiffuseGlowConstructorExample()
{
// 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(50, 50, 10, 10, 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:\LEADTOOLS23\Resources\Images";
}
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