public RasterColor ShadingColor { get; set; }
public:
property RasterColor ShadingColor {
RasterColor get();
void set ( RasterColor );
}
ShadingColor # get and set (ColoredBallsCommand)
The shade (or gradient) color.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.SpecialEffects;
public void ColoredBallsCommandExample()
{
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.ThrowExceptionsOnInvalidImages = true;
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "cannon.jpg"));
// Prepare the command
ColoredBallsCommand command = new ColoredBallsCommand();
RasterColor[] ballColors = new RasterColor[4];
ballColors[0] = new RasterColor(255, 128, 64);
ballColors[1] = new RasterColor(160, 80, 255);
ballColors[2] = new RasterColor(64, 255, 100);
ballColors[3] = new RasterColor(100, 255, 255);
command.NumberOfBalls = 1000;
command.Size = 15;
command.SizeVariation = 10;
command.HighLightAngle = 4500;
command.HighLightColor = new RasterColor(255, 255, 255);
command.BackGroundColor = new RasterColor(255, 0, 0);
command.ShadingColor = new RasterColor(255, 255, 0);
command.Ripple = 200;
command.BallColorOpacity = 64;
command.BallColorOpacityVariation = 25;
command.Flags = ColoredBallsCommandFlags.ShadingCircular |
ColoredBallsCommandFlags.Sticker |
ColoredBallsCommandFlags.BackGroundImage |
ColoredBallsCommandFlags.BallsColorOpacity;
command.BallColors = ballColors;
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