Translates the specified color in the image, and returns the nearest matching color in the destination image.
Syntax
Parameters
- destImage
- Destination RasterImage object.
- rgb
- Value that specifies the color in the image to be translated.
Return Value
The color value or the palette index of the nearest matching color in the destination image. If the destination
image is 8 bits per pixel or less, this is always the palette index. Otherwise, it is the color value.
Example
Visual Basic | Copy Code |
---|
Public Sub TranslateColorExample()
RasterCodecs.Startup()
Dim codecs As RasterCodecs = New RasterCodecs()
Dim myImage1 As RasterImage = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Ulay1.bmp")
Dim myImage2 As RasterImage = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Sample1.cmp")
Dim win32Color As Integer = ColorTranslator.ToWin32(myImage2.GetPixelColor(0, 0).ToGdiPlusColor())
Dim index As Integer = myImage2.TranslateColor(myImage1, win32Color) And &HEFFFFFF
Console.WriteLine(String.Format("Palette index: {0}", index))
myImage2.Dispose()
myImage1.Dispose()
codecs.Dispose()
RasterCodecs.Shutdown()
End Sub |
C# | Copy Code |
---|
public void TranslateColorExample() { RasterCodecs.Startup(); RasterCodecs codecs = new RasterCodecs(); // load an 8 bpp image and a 24 bpp image RasterImage myImage1 = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Ulay1.bmp"); RasterImage myImage2 = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Sample1.cmp"); // translate the top-left pixel of the 24 bpp image to a palette index in the first int win32Color = ColorTranslator.ToWin32(myImage2.GetPixelColor(0, 0).ToGdiPlusColor()); int index = myImage2.TranslateColor(myImage1, win32Color) & 0x0EFFFFFF; Console.WriteLine(string.Format("Palette index: {0}", index)); myImage2.Dispose(); myImage1.Dispose(); codecs.Dispose(); RasterCodecs.Shutdown(); } |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also