Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.8.30
|
Leadtools.Codecs Namespace > RasterCodecs Class > ReadLoadResolutions Method : ReadLoadResolutions(Stream,Int32) Method |
public LeadSize[] ReadLoadResolutions( Stream stream, int pageNumber )
'Declaration
Public Overloads Function ReadLoadResolutions( _ ByVal stream As Stream, _ ByVal pageNumber As Integer _ ) As LeadSize()
'Usage
Dim instance As RasterCodecs Dim stream As Stream Dim pageNumber As Integer Dim value() As LeadSize value = instance.ReadLoadResolutions(stream, pageNumber)
public LeadSize[] ReadLoadResolutions( Stream stream, int pageNumber )
- (nullable NSArray<NSValue/*CGSize*/ *> *)loadResolutionsForStream:(LTLeadStream *)stream pageNumber:(NSInteger)pageNumber error:(NSError **)error
public LeadSize[] readLoadResolutions(ILeadStream stream, int page)
function Leadtools.Codecs.RasterCodecs.ReadLoadResolutions(Stream,Int32)( stream , pageNumber )
public: array<LeadSize>^ ReadLoadResolutions( Stream^ stream, int pageNumber )
A FlashPix, PhotoCD, ECW, JPEG 2000 or JBIG/JBIG2 file can contain more than one copy of the same image, each at a different physical resolution (width and height in pixels).
multi-page files (like TIF) containing compressions listed above (eg: JPEG 2000 or JBIG/JBIG2) can also contain more than one copy of the same image, each at a different physical resolution (width and height in pixels).
After you get the available resolutions, you can use any of the following to specify the one to be loaded:
The pages numbers start with 1, so set pageNumber to 2 to read the resolutions from the second page. If you set pageNumber to 1, the function behaves like the equivalent function without the pageNumber parameter.
After you get the available resolutions, you can use any of the following to specify the one to be loaded:
For more information, refer to Implementing JBIG Features.