Gets the number of unique colors in an image.
Syntax
Example
Visual Basic | Copy Code |
---|
ImageProcessing.Color.ColorCountCommand
Public Sub ColorCountCommandExample()
RasterCodecs.Startup()
Dim codecs As New RasterCodecs()
codecs.ThrowExceptionsOnInvalidImages = True
Dim leadImage As RasterImage = codecs.Load("C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Master.jpg")
Dim command As ColorCountCommand = New ColorCountCommand
Dim colorCount As Integer
command.Run(leadImage)
colorCount = command.ColorCount
MessageBox.Show("The image has " + colorCount.ToString() + " colors", "ColorCountCommand Results", MessageBoxButtons.OK)
RasterCodecs.Shutdown()
End Sub |
C# | Copy Code |
---|
ImageProcessing.Color.ColorCountCommand public void ColorCountCommandExample() { // Load an image RasterCodecs.Startup(); RasterCodecs codecs = new RasterCodecs(); codecs.ThrowExceptionsOnInvalidImages = true; RasterImage image = codecs.Load(@"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Master.jpg"); // Prepare the command ColorCountCommand command = new ColorCountCommand(); int colorCount; //Get the number of colors in the image. command.Run(image); colorCount = command.ColorCount; MessageBox.Show("The image has " + colorCount.ToString() + " colors","ColorCountCommand Results",MessageBoxButtons.OK); RasterCodecs.Shutdown(); } |
Remarks
Inheritance Hierarchy
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also