‪TYPO3CMS  ‪main
ImageMagick6Preset.php
Go to the documentation of this file.
1 <?php
2 
3 /*
4  * This file is part of the TYPO3 CMS project.
5  *
6  * It is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU General Public License, either version 2
8  * of the License, or any later version.
9  *
10  * For the full copyright and license information, please read the
11  * LICENSE.txt file that was distributed with this source code.
12  *
13  * The TYPO3 project - inspiring people to share!
14  */
15 
17 
20 
26 {
30  protected ‪$name = 'ImageMagick6';
31 
35  protected ‪$priority = 70;
36 
40  protected ‪$configurationValues = [
41  'GFX/processor_enabled' => true,
42  // processor_path is determined and set by path lookup methods
43  'GFX/processor_path' => '',
44  'GFX/processor' => 'ImageMagick',
45  'GFX/processor_effects' => true,
46  'GFX/processor_allowTemporaryMasksAsPng' => false,
47  'GFX/processor_colorspace' => 'sRGB',
48  ];
49 
55  protected function ‪findExecutableInPath(array $searchPaths)
56  {
57  return $this->‪findImageMagick6InPaths($searchPaths);
58  }
59 
66  protected function ‪findImageMagick6InPaths(array $searchPaths)
67  {
68  $result = false;
69  foreach ($searchPaths as $path) {
71  $executable = 'identify.exe';
72 
73  if (!@is_file($path . $executable)) {
74  $executable = 'magick.exe';
75  }
76  } else {
77  $executable = 'identify';
78  }
79  if (@is_file($path . $executable)) {
80  $command = escapeshellarg($path . $executable) . ' -version';
81  $executingResult = [];
82  ‪CommandUtility::exec($command, $executingResult);
83  // First line of exec command should contain string GraphicsMagick
84  $firstResultLine = array_shift($executingResult);
85  // Example: "Version: ImageMagick 6.6.0-4 2012-05-02 Q16 http://www.imagemagick.org"
86  if (str_contains($firstResultLine, 'ImageMagick')) {
87  [, $version] = explode('ImageMagick', $firstResultLine);
88  // Example: "6.6.0-4"
89  [$version] = explode(' ', trim($version));
90  if (version_compare($version, '6.0.0') >= 0) {
91  $this->foundPath = $path;
92  $result = true;
93  break;
94  }
95  }
96  }
97  }
98  return $result;
99  }
100 }
‪TYPO3\CMS\Install\Configuration\Image\ImageMagick6Preset\$configurationValues
‪array $configurationValues
Definition: ImageMagick6Preset.php:37
‪TYPO3\CMS\Install\Configuration\Image\AbstractImagePreset
Definition: AbstractImagePreset.php:26
‪TYPO3\CMS\Install\Configuration\Image\ImageMagick6Preset\findImageMagick6InPaths
‪bool findImageMagick6InPaths(array $searchPaths)
Definition: ImageMagick6Preset.php:63
‪TYPO3\CMS\Install\Configuration\Image\ImageMagick6Preset
Definition: ImageMagick6Preset.php:26
‪TYPO3\CMS\Install\Configuration\Image\ImageMagick6Preset\$priority
‪int $priority
Definition: ImageMagick6Preset.php:33
‪TYPO3\CMS\Core\Utility\CommandUtility\exec
‪static exec(string $command, ?array &$output=null, int &$returnValue=0)
Definition: CommandUtility.php:85
‪TYPO3\CMS\Install\Configuration\Image
Definition: AbstractImagePreset.php:16
‪TYPO3\CMS\Install\Configuration\Image\ImageMagick6Preset\findExecutableInPath
‪mixed findExecutableInPath(array $searchPaths)
Definition: ImageMagick6Preset.php:52
‪TYPO3\CMS\Install\Configuration\Image\ImageMagick6Preset\$name
‪string $name
Definition: ImageMagick6Preset.php:29
‪TYPO3\CMS\Core\Core\Environment
Definition: Environment.php:41
‪TYPO3\CMS\Core\Utility\CommandUtility
Definition: CommandUtility.php:54
‪TYPO3\CMS\Core\Core\Environment\isWindows
‪static isWindows()
Definition: Environment.php:287