ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
Extractor.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 
30 interface Extractor
31 {
32  public function readImage(\Imagick $img, Stream $stream, PagesToExtract $definition): \Imagick;
33 
34  public function getResolution(): int;
35 
36  public function getTargetFormat(): string;
37 
38  public function getBackground(): \ImagickPixel;
39 
40  public function getRemoveColor(): ?\ImagickPixel;
41 
42  public function getAlphaChannel(): int;
43 }
readImage(\Imagick $img, Stream $stream, PagesToExtract $definition)