Setting Default Zoom Value for Presentation in PHP
Contents
[
Hide
]
Aspose.Slides - Setting Default Zoom Value
To set default Zoom value for presentation using Aspose.Slides Java for PHP, simply invoke Zoom module. Here you can see example code.
PHP Code
# Create an instance of Presentation class
$pres = new Presentation();
\# Setting View Properties of Presentation
#pres.getViewProperties().getSlideViewProperties().setScale(50) # zoom value in percentages for slide view
$pres->getViewProperties()->getNotesViewProperties()->setScale(50); # .Scale = 50; //zoom value in percentages for notes view
\# Save the presentation as a PPTX file
$save_format = new SaveFormat();
$pres->save($dataDir . "Zoom.pptx", $save_format->Pptx);
print "Set zoom value, please check the output file.";
Download Running Code
Download Setting Default Zoom Value (Aspose.Slides) from any of the below mentioned social coding sites: