Gets or sets a value that indicates whether to generate a unique global palette for all GIF frames or generate a separate palette for each frame.
Syntax
Visual Basic (Declaration) | |
---|
Public Property PickSamePalette As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As ImageOptimizerOptions
Dim value As Boolean
instance.PickSamePalette = value
value = instance.PickSamePalette
|
C# | |
---|
public bool PickSamePalette {get; set;} |
Managed Extensions for C++ | |
---|
public: __property bool get_PickSamePalette();
public: __property void set_PickSamePalette(
bool value
); |
Return Value
Value that indicates whether to generate a unique global palette for all GIF frames or generate a separate palette for each frame. Possible values are:
Value
|
Description
|
true | Generate a unique global palette for all GIF Frames. |
false | Generate an individual palette for each GIF Frame. |
Example
This example will optimize a Gif image file and then save it to a separate folder
Visual Basic | Copy Code |
---|
Public Sub TestGifImageOptimizer()
RasterCodecs.Startup()
Dim codecs As RasterCodecs = New RasterCodecs()
Dim inputFileName As String = "C:\Program Files\LEAD Technologies, Inc\Leadtools .NET Class Library\Images\eye.gif"
Dim outputFolder As String = "C:\Optimized Images"
Dim optimizer As ImageOptimizer = New ImageOptimizer()
Dim options As ImageOptimizerOptions = ImageOptimizerOptions.Default
options.Distance = 20
options.Percent = 15
options.PickSamePalette = True
Dim orgBuffer() As Byte = File.ReadAllBytes(inputFileName)
Dim optBuffer() As Byte = optimizer.OptimizeBuffer(codecs, orgBuffer, 0, orgBuffer.Length, options, Nothing)
If (Not Directory.Exists(outputFolder)) Then
Directory.CreateDirectory(outputFolder)
End If
Dim outputFileName As String = Path.Combine(outputFolder, Path.GetFileName(inputFileName))
Using fs As FileStream = File.Create(outputFileName)
fs.Write(optBuffer, 0, optBuffer.Length)
End Using
Dim orgSize As Long = New FileInfo(inputFileName).Length
Dim optSize As Long = New FileInfo(outputFileName).Length
Dim percentage As Integer = CType(CType(optSize * 100.0 / orgSize, Double), Integer)
Dim message As String = String.Format( _
"Original image size: {0} KB{1}Optimized image size: {2} KB{1}Percentage: {3}%", _
orgSize / 1024, Environment.NewLine, optSize / 1024, _
100 - percentage)
MessageBox.Show(message)
RasterCodecs.Shutdown()
End Sub |
C# | Copy Code |
---|
public void TestGifImageOptimizer( ) { // Initialize the RasterCodecs class RasterCodecs.Startup(); RasterCodecs codecs = new RasterCodecs(); // The input and output location string inputFileName = @"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\eye.gif"; string outputFolder = @"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\OptimizedImages"; // Initialize a new Optimizer object ImageOptimizer optimizer = new ImageOptimizer(); // Optimization Options ImageOptimizerOptions options = ImageOptimizerOptions.Default; // Set custom optimization options options.Distance = 20; options.Percent = 15; options.PickSamePalette = true; // Load the input file into a byte memory array byte[] orgBuffer = File.ReadAllBytes(inputFileName); // Optimize this buffer byte[] optBuffer = optimizer.OptimizeBuffer(codecs, orgBuffer, 0, orgBuffer.Length, options, null); // Save this image into the output folder // Make sure the output folder exists if(!Directory.Exists(outputFolder)) Directory.CreateDirectory(outputFolder); // Get the name of the output file from the input file string outputFileName = Path.Combine(outputFolder, Path.GetFileName(inputFileName)); // Save the optimized buffer to the output file using(FileStream fs = File.Create(outputFileName)) fs.Write(optBuffer, 0, optBuffer.Length); // Compare the original image size with the optimized size long orgSize = new FileInfo(inputFileName).Length; long optSize = new FileInfo(outputFileName).Length; int percentage = (int)((double)optSize * 100.0 / orgSize); string message = string.Format( "Original image size: {0} KB{1}Optimized image size: {2} KB{1}Percentage: {3}%", orgSize / 1024, Environment.NewLine, optSize / 1024, 100 - percentage); MessageBox.Show(message); //shutdown the RasterCodecs class. RasterCodecs.Shutdown(); } |
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also