ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
FirstPageToTileImageMachine Class Reference
+ Inheritance diagram for FirstPageToTileImageMachine:
+ Collaboration diagram for FirstPageToTileImageMachine:

Public Member Functions

 __construct ()
 FlavourMachines must be able to be created without further dependencies. More...
 
 getId ()
 
 canHandleDefinition (FlavourDefinition $definition)
 Check if a corresponding configuration can be processed by this Machine. More...
 
 dependsOnEngine ()
 Return the class name of the Engine that is required for this Machine to work. More...
 
 processStream (FileInformation $information, FileStream $stream, FlavourDefinition $for_definition)
 
- Public Member Functions inherited from ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\AbstractMachine
 __construct ()
 FlavourMachines must be able to be created without further dependencies. More...
 
 withEngine (Engine $engine)
 The demanded Engine will be passed here. More...
 
 getEngine ()
 

Data Fields

const ID = "be03e07e396a61f7d9b31a712f0913fe9c6cd43b009ce69d30aa0f10bd3500bd"
 

Protected Member Functions

 cropImage (FileStream $stream, int $width)
 

Private Attributes

const FULL_QUALITY_SIZE_THRESHOLD = 100
 
ExtractPages $extract_pages
 
CropRectangle $crop
 
ilObjectTileImageFlavourDefinition $definition = null
 
FileInformation $information = null
 

Additional Inherited Members

- Protected Attributes inherited from ILIAS\ResourceStorage\Flavour\Machine\DefaultMachines\AbstractMachine
Engine $engine = null
 

Detailed Description

Author
Thibeau Fuhrer thibe.nosp@m.au@s.nosp@m.r.sol.nosp@m.utio.nosp@m.ns AutoloadingIssuesInspection

Definition at line 38 of file FirstPageToTileImageFlavourMachine.php.

Constructor & Destructor Documentation

◆ __construct()

FirstPageToTileImageMachine::__construct ( )

FlavourMachines must be able to be created without further dependencies.

Implements ILIAS\ResourceStorage\Flavour\Machine\FlavourMachine.

Definition at line 50 of file FirstPageToTileImageFlavourMachine.php.

Member Function Documentation

◆ canHandleDefinition()

FirstPageToTileImageMachine::canHandleDefinition ( FlavourDefinition  $definition)

Check if a corresponding configuration can be processed by this Machine.

Implements ILIAS\ResourceStorage\Flavour\Machine\FlavourMachine.

Definition at line 62 of file FirstPageToTileImageFlavourMachine.php.

◆ cropImage()

FirstPageToTileImageMachine::cropImage ( FileStream  $stream,
int  $width 
)
protected

Definition at line 108 of file FirstPageToTileImageFlavourMachine.php.

Referenced by processStream().

111  {
112  $quality = $width <= self::FULL_QUALITY_SIZE_THRESHOLD
113  ? 100 // we take 100% jpeg quality for small resultions
114  : $this->definition->getQuality();
115 
116 
117  return $this->crop->processStream(
118  $this->information,
119  $stream,
120  new CropToRectangle(
121  false,
122  $width,
123  $this->definition->getRatio(),
124  $quality
125  )
126  )->current()->getStream();
127  }
+ Here is the caller graph for this function:

◆ dependsOnEngine()

FirstPageToTileImageMachine::dependsOnEngine ( )

Return the class name of the Engine that is required for this Machine to work.

Returning null will result in a NullEngine passed to the Machine.

Implements ILIAS\ResourceStorage\Flavour\Machine\FlavourMachine.

Definition at line 67 of file FirstPageToTileImageFlavourMachine.php.

67  : ?string
68  {
69  return ImagickEngine::class;
70  }

◆ getId()

FirstPageToTileImageMachine::getId ( )
Returns
string max. 64 characters, MUST be unique and NOT a class-related magic-constant. E.g. you can generate a random one with $ php -r"echo hash('sha256', uniqid());" | pbcopy in your shell and paste string in your getId() implementation.

If you ever change the ID, FlavourDefinitions may no longer process anything with your machine that previously designated you as the processing machine.

Implements ILIAS\ResourceStorage\Flavour\Machine\FlavourMachine.

Definition at line 57 of file FirstPageToTileImageFlavourMachine.php.

57  : string
58  {
59  return self::ID;
60  }

◆ processStream()

FirstPageToTileImageMachine::processStream ( FileInformation  $information,
FileStream  $stream,
FlavourDefinition  $for_definition 
)
Parameters
FileInformation$informationof the original File.
FileStream$streamof the original File.
FlavourDefinition$for_definitionthe definition for which the stream should be processed.
Returns
Result[]| For each "thing" that the machine generates, a result can be returned. E.g. when extracting 5 images from a PDF, 5 results are returned (Generator).

Implements ILIAS\ResourceStorage\Flavour\Machine\FlavourMachine.

Definition at line 72 of file FirstPageToTileImageFlavourMachine.php.

References $information, cropImage(), and null.

76  : \Generator {
77  $this->definition = $for_definition;
78  $this->information = $information;
79 
80  $page_stream = $this->extract_pages->processStream(
81  $this->information,
82  $stream,
83  new PagesToExtract(
84  false,
85  $this->definition->getWidths()['xl'],
86  1,
87  false,
88  100
89  )
90  )->current()?->getStream();
91 
92  if ($page_stream === null) {
93  return;
94  }
95 
96  $i = 0;
97  foreach ($for_definition->getWidths() as $width) {
98  yield new Result(
99  $for_definition,
100  $this->cropImage($page_stream, $width),
101  $i,
102  true
103  );
104  $i++;
105  }
106  }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
cropImage(FileStream $stream, int $width)
+ Here is the call graph for this function:

Field Documentation

◆ $crop

CropRectangle FirstPageToTileImageMachine::$crop
private

Definition at line 46 of file FirstPageToTileImageFlavourMachine.php.

◆ $definition

ilObjectTileImageFlavourDefinition FirstPageToTileImageMachine::$definition = null
private

Definition at line 47 of file FirstPageToTileImageFlavourMachine.php.

◆ $extract_pages

ExtractPages FirstPageToTileImageMachine::$extract_pages
private

Definition at line 45 of file FirstPageToTileImageFlavourMachine.php.

◆ $information

FileInformation FirstPageToTileImageMachine::$information = null
private

Definition at line 48 of file FirstPageToTileImageFlavourMachine.php.

Referenced by processStream().

◆ FULL_QUALITY_SIZE_THRESHOLD

const FirstPageToTileImageMachine::FULL_QUALITY_SIZE_THRESHOLD = 100
private

Definition at line 44 of file FirstPageToTileImageFlavourMachine.php.

◆ ID

const FirstPageToTileImageMachine::ID = "be03e07e396a61f7d9b31a712f0913fe9c6cd43b009ce69d30aa0f10bd3500bd"

The documentation for this class was generated from the following file: