public static ColorPalette GetPaintPalette(
RasterImage image,
Graphics graphics
)
image
The source image.
graphics
The graphics object on which this Leadtools.RasterImage is painted.
a GDI+ palette
For more information refer to RasterImage and GDI/GDI+ and Handling Palette Changes.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Drawing;
using Leadtools.ImageProcessing;
public void GetPaintPaletteExample()
{
RasterCodecs codecs = new RasterCodecs();
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp"), 8, CodecsLoadByteOrder.Rgb, 1, 1);
using (Bitmap btmp = new Bitmap(1, 1))
{
using (Graphics g = Graphics.FromImage(btmp))
{
ColorPalette palette = RasterImagePainter.GetPaintPalette(image, g);
if (palette != null)
{
Console.WriteLine("Paint palette colors:");
for (int i = 0; i < palette.Entries.Length; i++)
{
Console.WriteLine("{0} - {1}", i, palette.Entries[i]);
}
}
else
{
Console.WriteLine("There is no palette");
}
}
}
image.Dispose();
codecs.Dispose();
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";
}