LEADTOOLS Image File Support (Leadtools.Codecs assembly)
LEAD Technologies, Inc

GetResolutions Method






Gets the resolutions to save when saving multi-resolution files. .NET support WinRT support Silverlight support
Syntax
public LeadSize[] GetResolutions()
'Declaration
 
Public Function GetResolutions() As LeadSize()
'Usage
 
Dim instance As CodecsSaveOptions
Dim value() As LeadSize
 
value = instance.GetResolutions()
public LeadSize[] GetResolutions()
 function Leadtools.Codecs.CodecsSaveOptions.GetResolutions()
public:
array<LeadSize>^ GetResolutions(); 

Return Value

An array of Leadtools.LeadSize structures indicating the resolutions to save.
Remarks

Currently, this only works with the JBIG format.

For JBIG, the maximum number of resolutions that can be saved is 29.

For a JBIG file, the values of different resolutions are implied because the dimensions of each resolution layer are half the dimensions of the one directly above it.

GetResolutions and SetResolutions are used to determine the highest resolution layer which will be saved in a file. You can fill the array with an actual width and height, or you can fill either the width or height with a valid value, and specify 0 for the other dimension to allow LEADTOOLS to calculate that dimension based on the image's aspect ratio during the next save operation. Note that for JBIG, all the values set in the array are stored, but only the first item is used during an actual file save process.

Ex.

              uCount = 3
              Resolution[0].Width = 800
              Resolution[0].Height = 0
            

If you then save an image that is 1600 x 1200, the resolutions that are stored in the file would be:

               800 x 600
               400 x 300
               200 x 150
            

Example
For an example, refer to CodecsOptions.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

CodecsSaveOptions Class
CodecsSaveOptions Members
Implementing JBIG Features

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.