public LeadSize J2kResolution { get; set; }
@property (nonatomic, assign) LeadSize j2kResolution;
public LeadSize getJ2kResolution()
public void setJ2kResolution(LeadSize value)
J2kResolution # get and set (CodecsTiffLoadOptions)
The resolution to load. The default value is 0,0
.
Specifies the resolution of the image to load. You can specify 0 to get the default.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Color;
using Leadtools.Svg;
void ReadLoadResolutionsExample(string jbigFileName)
{
RasterCodecs codecs = new RasterCodecs();
// Get the number of resolutions (sizes) available in this file
LeadSize[] resolution = codecs.ReadLoadResolutions(jbigFileName);
if (resolution.Length > 0)
{
Debug.WriteLine("{0} resolutions available", resolution.Length);
for (int i = 0; i < resolution.Length; i++)
Debug.WriteLine("{0} by {1}", resolution[i].Width, resolution[i].Height);
// Set the size to load, the smallest size in this case */
codecs.Options.Jpeg2000.Load.J2kResolution = resolution[0];
// Get the info in of the image to show its original size
CodecsImageInfo info = codecs.GetInformation(jbigFileName, false);
Debug.WriteLine("Size of image according to GetInformation is {0} by {1}", info.Width, info.Height);
// Load the image, keeping the bits per pixel of the file
RasterImage image = codecs.Load(jbigFileName);
Debug.WriteLine("Size of image loaded is {0} by {1}", image.Width, image.Height);
image.Dispose();
}
else
Debug.WriteLine("No resolutions found");
// Clean up
codecs.Dispose();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document