Palette

Base class that represents a palette.

public abstract class Palette
Public MustInherit Class Palette

Inheritance: ObjectPalette

Derived: AutoPalette, UserPalette, WebPalette, WindowsPalette

Licensing Info

This class is a DynamicPDF Rasterizer feature. One of the following is required for non-evaluation usage:

Examples

This example demonstrates the usage of Palette class.

Imports System
Imports ceTe.DynamicPDF.Rasterizer

Module MyModule

    Sub Main()

       ' Create a PdfRasterizer object.
       Dim rasterizer As New PdfRasterizer("InputPdfFile.pdf")

       ' Create a GifImageFormat.
       Dim gifImageFormat As New GifImageFormat()

       ' Set the Color palette property to WebPalette.
       gifImageFormat.ColorPalette = Palette.WebPalette

       ' Set the size.
       Dim fixedImageSize As New FixedImageSize(595, 841)

       ' Save the image.
       rasterizer.Draw("Output.Gif", gifImageFormat, fixedImageSize)


    End Sub
End Module
using System;
using ceTe.DynamicPDF.Rasterizer;

class MyClass
{
   static void Main(string[] args)
   {
       // Create a PdfRasterizer object.
       PdfRasterizer rasterizer = new PdfRasterizer("InputPdfFile.pdf");

       // Create a GifImageFormat.
       GifImageFormat gifImageFormat = new GifImageFormat();

       // Set the Color palette property to WebPalette.
       gifImageFormat.ColorPalette = Palette.WebPalette;

       // Set the size.
       FixedImageSize fixedImageSize = new FixedImageSize(595, 841);

       // Save the image.
       rasterizer.Draw("Output.Gif", gifImageFormat, fixedImageSize);
   }

}

Remarks

Palette's derived classes are: AutoPalette , UserPalette , WebPalette , WindowsPalette .

Properties

WebPaletteGets a default WebPalette class.
WindowsPaletteGets a default WindowsPalette class.

Methods

Equals(Object)Determines whether the specified Object is equal to the current Object .
(Inherited from Object)
GetHashCode()Serves as a hash function for a particular type.
(Inherited from Object)
GetType()Gets the Type of the current instance.
(Inherited from Object)
ToString()Returns a String that represents the current Object .
(Inherited from Object)

See Also

ceTe.DynamicPDF.Rasterizer

In this topic