public RasterColor[] NewColor { get; set; } Public Property NewColor As RasterColor() @property (nonatomic, strong, getter=getNewColor) NSMutableArray<LTRasterColor *> *newColor public RasterColor[] getNewColor()public void setNewColor(RasterColor[] value)
public:property array<RasterColor>^ NewColor {array<RasterColor>^ get();void set ( array<RasterColor>^ );}
Array of RasterColor structures that specifies an array of colors that will be mixed with the original gray values. If this parameter is set to null, the Color property must contain a valid color. Pass null when you want the command to create the array of colors, two colors when replacing both colors in a binary image, or 256 colors when using a custom array of colors.
Run the GrayScaleToDuotoneCommand on an image.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Color;public void NewColorPropertyExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Beauty16.jpg"));// Prepare the commandRasterColor[] array = new RasterColor[256];for (int i = 0; i < 256; i++)array[i] = new RasterColor(255, (byte)(i / 4), (byte)(i));//Apply duotone conversion.GrayScaleToDuotoneCommand command = new GrayScaleToDuotoneCommand();command.Run(image);command.Type = GrayScaleToDuotoneCommandMixingType.ReplaceOldWithNew;command.NewColor = array;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:\LEADTOOLS21\Resources\Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.ColorPublic Sub NewColorPropertyExample()Dim codecs As New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = TrueDim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\Beauty16.jpg"))' Prepare the commandDim command As GrayScaleToDuotoneCommand = New GrayScaleToDuotoneCommandDim array() As RasterColorDim i As IntegerReDim array(255)For i = 0 To 255array(i) = New RasterColor(255, CType(i / 4, Byte), CType(i, Byte))Next'Apply duotone conversion.command.Type = GrayScaleToDuotoneCommandMixingType.ReplaceOldWithNewcommand.NewColor = arraycommand.Run(leadImage)End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images"End Class
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
