Provides options to be used by the ImageOptimizer.OptimizeBuffer and the ImageOptimizer.OptimizeDirectory methods, to optimize the image and save it using the optimal bits per pixel.
public struct ImageOptimizerOptions : System.ValueTypePublic Structure ImageOptimizerOptionsInherits System.ValueType
public value class ImageOptimizerOptions : public System.ValueType
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageOptimizationImports Leadtools.Support.Examples<TestMethod()> _Public Sub TestJpegImageOptimizer()' Initialize the RasterCodecs classDim codecs As RasterCodecs = New RasterCodecs()' The input and output locationDim inputFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Cannon.jpg")Dim outputFolder As String = Path.Combine(LEAD_VARS.ImagesDir, "OptimizedImages")' Initialize a new Optimizer objectDim optimizer As ImageOptimizer = New ImageOptimizer()' Optimization OptionsDim options As ImageOptimizerOptions = ImageOptimizerOptions.Default' Set custom optimization optionsoptions.JpegQualityFactor = 255options.JpegColorSpace = ImageOptimizerJpegColorSpace.JpegColorSpace422' Load the input file into a memory byte arrayDim orgBuffer() As Byte = File.ReadAllBytes(inputFileName)' Optimize this bufferDim optBuffer() As Byte = optimizer.OptimizeBuffer(codecs, orgBuffer, 0, orgBuffer.Length, options, AddressOf OptimizeBufferProgress)' Save this image into the output folder' Make sure the output folder existsIf (Not Directory.Exists(outputFolder)) ThenDirectory.CreateDirectory(outputFolder)End If' Get the name of the output file from the input fileDim outputFileName As String = Path.Combine(outputFolder, Path.GetFileName(inputFileName))' Save the optimized buffer to the output fileUsing fs As FileStream = File.Create(outputFileName)fs.Write(optBuffer, 0, optBuffer.Length)End Using' Compare the original image size with the optimized sizeDim orgSize As Long = New FileInfo(inputFileName).LengthDim optSize As Long = New FileInfo(outputFileName).LengthDim 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)'shutdown the RasterCodecs class.End SubPublic Shared Function OptimizeBufferProgress(ByVal percent As Integer) As Boolean'Console.WriteLine(String.Format("{0}%", percent))Return TrueEnd FunctionPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageOptimization;public void TestJpegImageOptimizer( ){// Initialize the RasterCodecs classRasterCodecs codecs = new RasterCodecs();// The input and output locationstring inputFileName = Path.Combine(LEAD_VARS.ImagesDir, "Cannon.jpg");string outputFolder = Path.Combine(LEAD_VARS.ImagesDir, "OptimizedImages");// Initialize a new Optimizer objectImageOptimizer optimizer = new ImageOptimizer();// Optimization OptionsImageOptimizerOptions options = ImageOptimizerOptions.Default;// Set custom optimization optionsoptions.JpegQualityFactor = 255;options.JpegColorSpace = ImageOptimizerJpegColorSpace.JpegColorSpace422;// Load the input file into a memory byte arraybyte[] orgBuffer = File.ReadAllBytes(inputFileName);// Optimize this bufferbyte[] optBuffer = optimizer.OptimizeBuffer(codecs, orgBuffer, 0, orgBuffer.Length, options, OptimizeBufferProgress);// Save this image into the output folder// Make sure the output folder existsif(!Directory.Exists(outputFolder))Directory.CreateDirectory(outputFolder);// Get the name of the output file from the input filestring outputFileName = Path.Combine(outputFolder, Path.GetFileName(inputFileName));// Save the optimized buffer to the output fileusing(FileStream fs = File.Create(outputFileName))fs.Write(optBuffer, 0, optBuffer.Length);// Compare the original image size with the optimized sizelong 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.}static bool OptimizeBufferProgress(int percent){Console.WriteLine(string.Format("{0}%", percent));return true;}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
|
Products |
Support |
Feedback: ImageOptimizerOptions Structure - Leadtools.ImageOptimization |
Introduction |
Help Version 19.0.2017.3.21
|

Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.