←Select platform

FillCommand Constructor(RasterColor)

Summary
Initializes a new instance of the FillCommand class with explicit parameters.
Syntax
C#
Objective-C
C++/CLI
Java
Python
- (instancetype)initWithColor:(LTRasterColor *)color 
public FillCommand(RasterColor color) 
public: 
FillCommand(  
   RasterColor color 
) 
__init__(self,color) # Overloaded constructor 

Parameters

color
The fill color.

Remarks

The FillCommand function can use the Extended Grayscale mask. For more information, refer to Grayscale Images

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing; 
 
 
public void FillCommandExample() 
{ 
	RasterCodecs codecs = new RasterCodecs(); 
 
	string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp"); 
	string destFileName = Path.Combine(LEAD_VARS.ImagesDir, "FillCommand.bmp"); 
 
	// Load the source image from disk 
	RasterImage image = codecs.Load(srcFileName); 
 
	// Fill the image with blue color 
	FillCommand command = new FillCommand(); 
	command.Color = new RasterColor(0, 0, 255); 
	command.Run(image); 
 
	// Save it to disk 
	codecs.Save(image, destFileName, RasterImageFormat.Bmp, 24); 
 
	// Clean Up 
	image.Dispose(); 
	codecs.Dispose(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools Assembly

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