Get document information

GroupDocs.Signature allows to get document information which includes:

Get document information from file on local disk

The following code snippet demonstrates how to obtain information about document stored on local disk.

Signature signature = new Signature("sample.pdf");
// Document description
IDocumentInfo docInfo = signature.getDocumentInfo();
System.out.print("Document contains " + docInfo.getPageCount() + " pages");
System.out.print("File type is " + docInfo.getFileType().getFileFormat());
System.out.print("Width for Max Height  " + docInfo.getWidthForMaxHeight());
System.out.print("Max Page Height" + docInfo.getMaxPageHeight());
System.out.print("File size in bytes is " + docInfo.getSize());
System.out.print("Width of first page is " + docInfo.getPages().get(0).getWidth());
for(PageInfo page : docInfo.getPages()){
    System.out.print("- page-"+ page.getPageNumber()+ " Height " + page.getHeight() + " Width " + page.getWidth());
}

Get document information from a stream

The following code snippet demonstrates how to obtain information about document provided as a stream. 

FileInputStream stream = new FileInputStream("sample.pdf")
Signature signature = new Signature(stream );
// Document description
IDocumentInfo docInfo = signature.getDocumentInfo();
System.out.print("Document contains " + docInfo.getPageCount() + " pages");
System.out.print("File type is " + docInfo.getFileType().getFileFormat());
System.out.print("Width for Max Height  " + docInfo.getWidthForMaxHeight());
System.out.print("Max Page Height" + docInfo.getMaxPageHeight());
System.out.print("File size in bytes is " + docInfo.getSize());
System.out.print("Width of first page is " + docInfo.getPages().get(0).getWidth());
for(PageInfo page : docInfo.getPages()){
    System.out.print("- page-"+ page.getPageNumber()+ " Height " + page.getHeight() + " Width " + page.getWidth());
}

More resources

Advanced Usage Topics

To learn more about document eSign features, please refer to the advanced usage section.

GitHub Examples

You may easily run the code above and see the feature in action in our GitHub examples:

Free Online App

Along with full-featured .NET library we provide simple, but powerful free Apps.
You are welcome to eSign PDF, Word, Excel, PowerPoint documents with free to use online GroupDocs Signature App.