Get Document Window and Page Display Properties in PHP
Contents
[
Hide
]
Aspose.PDF - Get Document Window and Page Display Properties
To Get Document Window and Page Display Properties of Pdf document using Aspose.PDF Java for PHP, simply invoke GetDocumentWindow class.
PHP Code
# Open a pdf document.
$doc = new Document($dataDir . "input1.pdf");
# Get different document properties
# Position of document's window - Default: false
print "CenterWindow :- " . $doc->getCenterWindow() . PHP_EOL;
# Predominant reading order; determine the position of page
# when displayed side by side - Default: L2R
print "Direction :- " . $doc->getDirection() . PHP_EOL;
# Whether window's title bar should display document title.
# If false, title bar displays PDF file name - Default: false
print "DisplayDocTitle :- " . $doc->getDisplayDocTitle() . PHP_EOL;
#Whether to resize the document's window to fit the size of
#first displayed page - Default: false
print "FitWindow :- " . $doc->getFitWindow() . PHP_EOL;
# Whether to hide menu bar of the viewer application - Default: false
print "HideMenuBar :-" . $doc->getHideMenubar() . PHP_EOL;
# Whether to hide tool bar of the viewer application - Default: false
print "HideToolBar :-" . $doc->getHideToolBar() . PHP_EOL;
# Whether to hide UI elements like scroll bars
# and leaving only the page contents displayed - Default: false
print "HideWindowUI :-" . $doc->getHideWindowUI() . PHP_EOL;
# The document's page mode. How to display document on exiting full-screen mode.
print "NonFullScreenPageMode :-" . $doc->getNonFullScreenPageMode() . PHP_EOL;
# The page layout i.e. single page, one column
print "PageLayout :-" . $doc->getPageLayout() . PHP_EOL;
#How the document should display when opened.
print "pageMode :-" . $doc->getPageMode() . PHP_EOL;
Download Running Code
Download Get Document Window and Page Display Properties (Aspose.PDF) from any of the below mentioned social coding sites: