←Select platform

Type Property

Summary
Gets or sets a value that represents the type of separation that was used to create the grayscale images.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public ColorMergeCommandType Type { get; set; } 
@property (nonatomic, assign) LTColorMergeCommandType type; 
public ColorMergeCommandType getType(); 
public void setType( 
   ColorMergeCommandType colorMergeCommandType 
); 
public: 
property ColorMergeCommandType Type { 
   ColorMergeCommandType get(); 
   void set (    ColorMergeCommandType ); 
} 
Type # get and set (ColorMergeCommand) 

Property Value

Value that represents the type of separation that was used to create the grayscale images.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
 
public void ColorMergeConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "sample5.cmp")); 
 
   // Prepare the command 
   ColorSeparateCommand colorseparatecommand = new ColorSeparateCommand(); 
   colorseparatecommand.Type = ColorSeparateCommandType.Rgb; 
   colorseparatecommand.Run(image); 
 
   // Prepare the command 
   ColorMergeCommand command = new ColorMergeCommand(); 
   command.Type = ColorMergeCommandType.Rgb; 
   command.Run(colorseparatecommand.DestinationImage); 
   codecs.Save(command.DestinationImage, Path.Combine(LEAD_VARS.ImagesDir, "ColorMergeCommandResult.bmp"), RasterImageFormat.Bmp, 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.Color Assembly

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