Size of this page.
public LeadSizeD Size { get; }
The size of this DocumentPage in document units.
If this DocumentPage corresponds to an original page in the document, then the size of the page is determined from the original physical size and resolution when the LEADDocument was loaded. If this page was added to the document by the user, then the size is the value passed to DocumentPages.CreatePage.
OriginalPageNumber is the page number of this DocumentPage in the original document. It is -1 if this page was added by the user.
Refer to Loading Using LEADTOOLS Document Library for more information.
Size and Resolution will always contain a value and is populated for all pages of the document upon initialization. The LEADTOOLS Document Viewer relies on this to create empty items for each page in the image viewer control. Each item will have the correct size but no image data. It will then load the raster image or SVG objects for the page in a background thread.
The raster image returned from GetImage() or GetImage(resolution) will have the same size in value as Size (the size will be in pixels and if transformed using Resolution will result in the same value as Size).
If the value of ImageScale is a value greater than 1, then the raster or SVG objects returned will have a size that is equal to Size / ImageScale.
When the user sets a new raster image using SetImage, the Size and Resolution values of the page are updated from the RasterImage object. If the value passed is null, then Size and Resolution will be updated using DocumentPages.DefaultPageSize and DocumentPages.DefaultResolution.
Size is in document units, refer to Document Library Coordinate System for more information.
using Leadtools;using Leadtools.Caching;using Leadtools.Document;public void DocumentExample(){var cache = GetCache();var policy = new CacheItemPolicy();policy.AbsoluteExpiration = DateTime.Now + new TimeSpan(0, 0, 1);policy.SlidingExpiration = new TimeSpan(0, 0, 1);var options = new LoadDocumentOptions();options.CachePolicy = policy;options.Cache = cache;if(options.Cache == null){options.Cache = DocumentFactory.Cache;}string documentId = null;using (var document = DocumentFactory.LoadFromFile(Path.Combine(LEAD_VARS.ImagesDir, "Leadtools.pdf"), options)){document.GetDocumentFileName();document.IsReadOnly = false;document.AutoDeleteFromCache = false;// DocumentImages referencedocument.Images.DefaultBitsPerPixel = 24;Console.WriteLine(document.Images.IsResolutionsSupported);Console.WriteLine(document.Images.IsSvgSupported);// Check if the document has a stream in memoryif (document.HasStream){// Get the document streamdocument.GetDocumentStream();}// Indicate whether the document is using the cache or notConsole.WriteLine(document.HasCache);//Indicate if the document was downloadedConsole.WriteLine(document.IsDownloaded);// Gets a value that determines whether the document structure is supportedConsole.WriteLine(document.IsStructureSupported);// Output metadata values (DocumentMetadata reference)Console.WriteLine(document.Metadata.Values.Count);// Get the Mime type of the documentConsole.WriteLine(document.MimeType);// Parse document structure data (DocumentStructure reference)foreach(DocumentBookmark bookmark in document.Structure.Bookmarks){bookmark.Title = null;bookmark.FontStyles = DocumentFontStyles.Normal;document.Structure.Bookmarks.Add(bookmark);Console.WriteLine(bookmark.Children);Console.WriteLine(bookmark.Target);Console.WriteLine(document.Structure.Bookmarks.Count);Console.WriteLine(document.Structure.IsParsed);Console.WriteLine(document.Structure.ParseBookmarks);}document.Structure.Parse();// Get the document URIConsole.WriteLine(document.Uri);// Get each DocumentPage object (DocumentPage & DocumentPages reference)foreach (DocumentPage page in document.Pages){// Get the page as a raster image at the specified resolutionpage.GetImage(0);// Get the page as an Svg with specified optionspage.GetSvg(null);// Flip this page horizontallypage.Reverse();// Use this method to add an array of links for this pagepage.SetLinks(null);page.IsLinksModified = false;page.Resolution = 0;page.ViewPerspective = RasterViewPerspective.TopLeft;page.SetLinks(page.GetLinks());Console.WriteLine($"Page Number: {page.PageNumber}, Original PageNumber: {page.OriginalPageNumber}, Size of the page: {page.Size}");}PrintOutDocumentInfo(document);documentId = document.DocumentId;document.SaveToCache();}System.Threading.Thread.Sleep(2000);var loadFromCacheOptions = new LoadFromCacheOptions();loadFromCacheOptions.Cache = cache;loadFromCacheOptions.DocumentId = documentId;using (var document = DocumentFactory.LoadFromCache(loadFromCacheOptions)){if (null == document){Console.WriteLine("Cached document was expired and deleted!");}}}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";}