The current number of this page in the document.
public int PageNumber { get; } public:property int PageNumber{int get()}
public int getPageNumber() PageNumber # get (DocumentPage)
The 1-based number of this DocumentPage in the document.
This value is the index of this page in DocumentPages plus 1. It corresponds to the current page number in the document.
OriginalPageNumber is the number of this DocumentPage in the original document file. When the document is loaded, OriginalPageNumber and PageNumber will contain the same value. If the user modifies the pages of the document by adding, removing or replacing pages, then the two values will differ. OriginalPageNumber will never change and will still holds the value in the original document while PageNumber will return the current updated number of the page in the document.
When a page is added to the document by the user, the value of OriginalPageNumber will be -1 since it does not correspond to an item in the original document.
If this page was added to a virtual document, then PageNumber will not change. It will always contains the original value that corresponds to its location in its original document. To find out the number of page in virtual document, use the System.Collections.Generic.IList IndexOf object of the target document passing the DocumentPage (remembering that this method will return the 0-based index, therefore add 1 in order to get the page number). Refer to Creating Documents with LEADTOOLS Document Library for more information.
Refer to Loading Using LEADTOOLS Document Library 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";}
import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStream;import java.net.URI;import java.net.URISyntaxException;import java.util.Calendar;import org.junit.*;import org.junit.runner.JUnitCore;import org.junit.runner.Result;import org.junit.runner.notification.Failure;import static org.junit.Assert.*;import leadtools.*;import leadtools.caching.*;import leadtools.document.*;public void documentExample() throws InterruptedException, IOException {final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images";FileCache cache = getCache();CacheItemPolicy policy = new CacheItemPolicy();Calendar nowPlus = Calendar.getInstance();nowPlus.add(Calendar.SECOND, 1);policy.setAbsoluteExpiration(nowPlus.getTime());policy.setSlidingExpiration(1);LoadDocumentOptions options = new LoadDocumentOptions();options.setCachePolicy(policy);options.setCache(cache);if (options.getCache() == null) {options.setCache(DocumentFactory.getCache());}LEADDocument document = DocumentFactory.loadFromFile(combine(LEAD_VARS_IMAGES_DIR, "Leadtools.pdf"), options);document.getDocumentFileName();document.setReadOnly(false);document.setAutoDeleteFromCache(false);// DocumentImages referencedocument.getImages().setDefaultBitsPerPixel(24);System.out.println(document.getImages().isResolutionsSupported());System.out.println(document.getImages().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 notSystem.out.println(document.hasCache());// Indicate if the document was downloadedSystem.out.println(document.isDownloaded());// Gets a value that determines whether the document structure is supportedSystem.out.println(document.isStructureSupported());// Output metadata values (DocumentMetadata reference)System.out.println(document.getMetadata().values().size());// Get the Mime type of the documentSystem.out.println(document.getMimeType());// Parse document structure data (DocumentStructure reference)for (DocumentBookmark bookmark : document.getStructure().getBookmarks()) {bookmark.setTitle(null);bookmark.setFontStyles(DocumentFontStyles.NORMAL);document.getStructure().getBookmarks().add(bookmark);System.out.println(bookmark.getChildren());System.out.println(bookmark.getTarget());System.out.println(document.getStructure().getBookmarks().size());System.out.println(document.getStructure().isParsed());System.out.println(document.getStructure().getParseBookmarks());}document.getStructure().parse();// Get the document URISystem.out.println(document.getUri());// Get each DocumentPage object (DocumentPage & DocumentPages reference)document.setCacheOptions(document.getCacheOptions());for (DocumentPage page : document.getPages()) {assertTrue(document != null);System.out.println("Document created successfully");// 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.setLinkedModified(false);page.setResolution(0);page.setViewPerspective(RasterViewPerspective.TOP_LEFT);page.setLinks(page.getLinks());System.out.println("Page Number: " + page.getPageNumber() + ", Original PageNumber: "+ page.getOriginalPageNumber() + ", Size of the page: " + page.getSize() + "");}printOutDocumentInfo(document);document.saveToCache();document.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
