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);
}
}
import java.io.File;
import java.io.IOException;
import java.util.Random;
import org.junit.*;
import org.junit.Test;
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
import static org.junit.Assert.*;
import leadtools.*;
public void rasterColorFromRgbExample() {
RasterColor[] colors = new RasterColor[RasterColor.MAXIMUM_COMPONENT - RasterColor.MINIMUM_COMPONENT + 1];
for (int i = RasterColor.MINIMUM_COMPONENT; i < RasterColor.MAXIMUM_COMPONENT; i++) {
colors[i] = RasterColor.fromRgb(i);
}
for (int i = RasterColor.MINIMUM_COMPONENT; i < RasterColor.MAXIMUM_COMPONENT; i++) {
assertTrue(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