‪TYPO3CMS  9.5
ImageMagick6Preset.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
18 
24 {
28  protected ‪$name = 'ImageMagick6';
29 
33  protected ‪$priority = 70;
34 
38  protected ‪$configurationValues = [
39  'GFX/processor_enabled' => true,
40  // processor_path and processor_path_lzw are determined and set by path lookup methods
41  'GFX/processor_path' => '',
42  'GFX/processor_path_lzw' => '',
43  'GFX/processor' => 'ImageMagick',
44  'GFX/processor_effects' => true,
45  'GFX/processor_allowTemporaryMasksAsPng' => false,
46  'GFX/processor_colorspace' => 'sRGB',
47  ];
48 
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 = false;
82  ‪\TYPO3\CMS\Core\Utility\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 (strpos($firstResultLine, 'ImageMagick') !== false) {
87  list(, $version) = explode('ImageMagick', $firstResultLine);
88  // Example: "6.6.0-4"
89  list($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:35
‪TYPO3\CMS\Install\Configuration\Image\AbstractImagePreset
Definition: AbstractImagePreset.php:24
‪TYPO3\CMS\Install\Configuration\Image\ImageMagick6Preset\findImageMagick6InPaths
‪bool findImageMagick6InPaths(array $searchPaths)
Definition: ImageMagick6Preset.php:63
‪TYPO3\CMS\Core\Core\Environment\isWindows
‪static bool isWindows()
Definition: Environment.php:266
‪TYPO3\CMS\Install\Configuration\Image\ImageMagick6Preset
Definition: ImageMagick6Preset.php:24
‪TYPO3\CMS\Install\Configuration\Image\ImageMagick6Preset\$priority
‪int $priority
Definition: ImageMagick6Preset.php:31
‪TYPO3\CMS\Core\Utility\CommandUtility\exec
‪static string exec($command, &$output=null, &$returnValue=0)
Definition: CommandUtility.php:80
‪TYPO3\CMS\Install\Configuration\Image
Definition: AbstractImagePreset.php:2
‪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:27
‪TYPO3\CMS\Core\Core\Environment
Definition: Environment.php:39