public RasterColor(int alpha,int red,int green,int blue)
- (instancetype)initWithRed:(NSInteger)redgreen:(NSInteger)greenblue:(NSInteger)bluealpha:(NSInteger)alpha
alpha
The alpha component value for the new Color structure. Valid values are MinimumComponent through MaximumComponent.
red
The red component value for the new Color structure. Valid values are MinimumComponent through MaximumComponent.
green
The green component value for the new Color structure. Valid values are MinimumComponent through MaximumComponent.
blue
The blue component value for the new Color structure. Valid values are MinimumComponent through MaximumComponent.
using Leadtools;public void RasterColorArgbExample(){const int A = 128, R = 24, G = 87, B = 134;// Create a RasterColorRasterColor clr = new RasterColor(A, R, G, B);// Make sure the color is correctAssert.IsTrue(clr.A == A);Assert.IsTrue(clr.R == R);Assert.IsTrue(clr.G == G);Assert.IsTrue(clr.B == B);// The ARGB values represent real color components. This is NOT a palette index.Assert.IsFalse(clr.IsPaletteIndex);// Show its valueConsole.WriteLine(clr);// Show the A, R, G and B valuesConsole.WriteLine("Alpha value: " + clr.A);Console.WriteLine("Red value: " + clr.R);Console.WriteLine("Green value: " + clr.G);Console.WriteLine("Blue value: " + clr.B);// When the color is a palette index, the ARGB values are not color componentsint index = 128;RasterColor peletteIndex = RasterColor.FromPaletteIndex(index);Assert.IsTrue(peletteIndex.IsPaletteIndex);// The use the ToRGB method to obtain the indexAssert.IsTrue(peletteIndex.ToRgb() == index);}
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
