1 | <?php |
||
21 | class PdfInfo extends NoDisplay |
||
22 | { |
||
23 | private $pdfInfoPath; |
||
24 | |||
25 | /** |
||
26 | * Create null device object |
||
27 | * |
||
28 | * @param ProcessBuilder $builder |
||
29 | * @param ProcessArguments $arguments |
||
30 | * @param string $pdfInfoPath Path to toolbin/pdf_info.ps |
||
31 | */ |
||
32 | public function __construct(ProcessBuilder $builder, ProcessArguments $arguments, $pdfInfoPath) |
||
37 | |||
38 | /** |
||
39 | * @param string $inputFile Path to PDF file to be examined |
||
40 | * @return \Symfony\Component\Process\Process |
||
41 | */ |
||
42 | public function createProcess($inputFile = null) |
||
50 | } |
||
51 |