Page
page
The number of document pages that is used with the transformation. It can be included in multiple groups, but a specific base image always uses the last value during the interpretation process.
Parameters
- 1 or larger integer
- max. document page number
- default is: 1
Limitations
- designed to be interpreted for PDF documents only
Dependencies
- This transformation does not have any dependencies.
Examples
See the following examples about the possible ways of usage.
Showing the second page
h:300_page:2
use shardimage\shardimagephp\factories\Transformation;
$transformations = (new Transformation())->height(300)->page(2);
Showing the third page
h:300_page:3
use shardimage\shardimagephp\factories\Transformation;
$transformations = (new Transformation())->height(300)->page(3);