Gets or sets the value that represents the quality factor to be used in the image optimization operation.
public int PngQualityFactor {get; set;}Public Property PngQualityFactor As IntegerThe PngQualityFactor can be a value between 0 and 9 where:
The Default value is 9.
The PngQualityFactor is used only if the original image format is RasterImageFormat.Png. Bits per pixel: 1, 4, 8, 24, 32, 48, and 64.
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageOptimizationImports Leadtools.Support.Examples<TestMethod()> _Public Sub TestPngImageOptimizer()' Initialize the RasterCodecs classDim Codecs As RasterCodecs = New RasterCodecs()' The input and output locationDim inputFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "LittleGFlyingAlpha.png")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.Distance = 20options.Percent = 15options.PngQualityFactor = 4Dim bufferPtr As IntPtrDim bufferSize As Integer = 0LoadFileIntoPointer(inputFileName, bufferPtr, bufferSize)If (IntPtr.Zero <> bufferPtr AndAlso bufferSize > 0) ThenDim optBuffer As RasterNativeBuffer = optimizer.OptimizeBuffer(Codecs, bufferPtr, bufferSize, options, Nothing)' Free orgBuffer.PointerBuffer, since it won't be needed anymore.Marshal.FreeHGlobal(bufferPtr)' 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)Dim optArray(CInt(optBuffer.Length)) As ByteMarshal.Copy(optBuffer.Data, optArray, 0, optArray.Length)fs.Write(optArray, 0, optArray.Length)End Using' Free optBuffer.PointerBuffer, since it won't be needed anymore.Marshal.FreeHGlobal(optBuffer.Data)' Compare the original image size with the optimized size.Dim 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)Console.WriteLine(message)End If'shutdown the RasterCodecs class.End Sub' This method opens an image file and loads it into IntPtr.Private Sub LoadFileIntoPointer(ByVal fileName As String, ByRef ptr As IntPtr, ByRef size As Integer)Using fs As FileStream = File.OpenRead(fileName)' Allocate memory to load the filesize = CType(fs.Length, Integer)ptr = Marshal.AllocHGlobal(size)' Load in 32K chunksConst bufferSize As Integer = 32 * 1024Dim buffer(bufferSize) As ByteDim bytesToRead As IntegerDim bytesLeft As Integer = CType(fs.Length, Integer)Dim tempPtr As IntPtr = ptr ' where we areDo' read a chunkbytesToRead = Math.Min(bufferSize, bytesLeft)If (bytesToRead > 0) Thenfs.Read(buffer, 0, bytesToRead)' copy into our bufferMarshal.Copy(buffer, 0, tempPtr, bytesToRead)' move the temp pointertempPtr = New IntPtr(tempPtr.ToInt64() + bytesToRead)bytesLeft -= bytesToReadEnd IfLoop While (bytesToRead > 0)End UsingEnd SubPublic 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 TestPngImageOptimizer( ){// Initialize the RasterCodecs classRasterCodecs codecs = new RasterCodecs();// The input and output locationstring inputFileName = Path.Combine(LEAD_VARS.ImagesDir, "LittleGFlyingAlpha.png");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.Distance = 20;options.Percent = 15;options.PngQualityFactor = 4;IntPtr bufferPtr;int bufferSize = 0;LoadFileIntoPointer(inputFileName, out bufferPtr, out bufferSize);if(IntPtr.Zero != bufferPtr && bufferSize > 0){RasterNativeBuffer optBuffer = optimizer.OptimizeBuffer(codecs, bufferPtr, bufferSize, options, null);// Free orgBuffer.PointerBuffer, since it won't be needed anymore.Marshal.FreeHGlobal(bufferPtr);// 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)){byte[] optArray = new byte[optBuffer.Length];Marshal.Copy(optBuffer.Data, optArray, 0, optArray.Length);fs.Write(optArray, 0, optArray.Length);}// Free optBuffer.PointerBuffer, since it won't be needed anymore.Marshal.FreeHGlobal(optBuffer.Data);// 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.}// This method opens an image file and loads it into IntPtr.private void LoadFileIntoPointer(string fileName, out IntPtr ptr, out int size){using(FileStream fs = File.OpenRead(fileName)){// Allocate memory to load the filesize = (int)fs.Length;ptr = Marshal.AllocHGlobal(size);// Load in 32K chunksconst int bufferSize = 32 * 1024;byte[] buffer = new byte[bufferSize];int bytesToRead;int bytesLeft = (int)fs.Length;IntPtr tempPtr = ptr; // where we aredo{// read a chunkbytesToRead = Math.Min(bufferSize, bytesLeft);if(bytesToRead > 0){fs.Read(buffer, 0, bytesToRead);// copy into our bufferMarshal.Copy(buffer, 0, tempPtr, bytesToRead);// move the temp pointertempPtr = new IntPtr(tempPtr.ToInt64() + bytesToRead);bytesLeft -= bytesToRead;}}while(bytesToRead > 0);}}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
|
Products |
Support |
Feedback: PngQualityFactor Property - 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.