←Select platform

Resolution Property

Summary

Resolution of the item in dots per inch (DPI).

Syntax
C#
VB
C++
public LeadSizeD Resolution { get; set; } 
Public Property Resolution() As LeadSizeD 
   Get 
   Set 
public:  
   property LeadSizeD^ Resolution 
   { 
      LeadSizeD^ get() 
      void set(LeadSizeD^ value) 
   } 

Property Value

The resolution (in dots per inch) of the original image data if accounting for the logical size of the image when displayed is desired. Default value is 0,0.

Remarks

This value is important when UseDpi is used. A value of 0 means use the current screen resolution. This is the same value set in ScreenDpi.

For more information, refer to Image Viewer Items.

Example
C#
VB
using Leadtools; 
using Leadtools.Controls; 
using Leadtools.Codecs; 
using Leadtools.Drawing; 
using LeadtoolsExamples.Common; 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Color; 
 
public void ImageViewerItemResolution_Example() 
{ 
   string fileName = Path.Combine(ImagesPath.Path, string.Format("ocr1.tif")); 
 
   LeadSize imageSize; 
   int pageCount; 
   LeadSizeD resolution; 
 
   using (RasterCodecs codecs = new RasterCodecs()) 
   { 
      using (CodecsImageInfo info = codecs.GetInformation(fileName, true)) 
      { 
         imageSize = LeadSize.Create(info.Width, info.Height); 
         pageCount = info.TotalPages; 
         resolution = LeadSizeD.Create(info.XResolution, info.YResolution); 
      } 
 
      _imageViewer.BeginTransform(); 
      for (int itemIndex = 0; itemIndex < pageCount; itemIndex++) 
      { 
         ImageViewerItem item = new ImageViewerItem(); 
         item.Text = "Item" + itemIndex.ToString(); 
 
         item.Size = imageSize; 
         item.ImageSize = imageSize; 
         item.Resolution = resolution; 
         item.Tag = itemIndex + 1; // save page number in Tag 
 
         _imageViewer.Items.Add(item); 
      } 
      _imageViewer.EndTransform(); 
   } 
} 
Imports Leadtools 
Imports Leadtools.Controls 
Imports Leadtools.Codecs 
Imports Leadtools.Drawing 
Imports Leadtools.ImageProcessing 
Imports Leadtools.ImageProcessing.Color 
Imports LeadtoolsControlsExamples.LeadtoolsExamples.Common 
 
Public Sub ImageViewerItemResolution_Example(ByVal fileName As String) 
   Dim imageSize As LeadSize 
   Dim pageCount As Integer 
   Dim resolution As LeadSizeD 
 
   Using codecs As RasterCodecs = New RasterCodecs() 
      Using info As CodecsImageInfo = codecs.GetInformation(fileName, True) 
         imageSize = LeadSize.Create(info.Width, info.Height) 
         pageCount = info.TotalPages 
         resolution = LeadSizeD.Create(info.XResolution, info.YResolution) 
      End Using 
 
      _imageViewer.BeginTransform() 
      Dim itemIndex As Integer = 0 
      Do While itemIndex < pageCount 
         Dim item As ImageViewerItem = New ImageViewerItem() 
         item.Text = "Item" & itemIndex.ToString() 
 
         item.Size = imageSize 
         item.ImageSize = imageSize 
         item.Resolution = resolution 
         item.Tag = itemIndex + 1 ' save page number in Tag 
 
         _imageViewer.Items.Add(item) 
         itemIndex += 1 
      Loop 
      _imageViewer.EndTransform() 
   End Using 
End Sub 

Requirements

Target Platforms

Help Version 20.0.2020.4.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Controls Assembly