public static RasterColor FromRgb(
int rgb
)
public static RasterColor fromRgb(
int rgb
);
public:
static RasterColor FromRgb(
int rgb
)
def FromRgb(self,rgb):
rgb
The rgb value.
The RasterColor structure that this method creates.
This example will create an array of RasterColor containing 256 shades of gray.
using Leadtools;
public void FromRgbExample()
{
RasterColor[] colors = new RasterColor[RasterColor.MaximumComponent - RasterColor.MinimumComponent + 1];
for (int i = RasterColor.MinimumComponent; i < RasterColor.MaximumComponent; i++)
{
colors[i] = RasterColor.FromRgb(i);
}
for (int i = RasterColor.MinimumComponent; i < RasterColor.MaximumComponent; i++)
{
Assert.IsTrue(colors[i].ToRgb() == i);
}
}
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