Files
cms-core/Classes/Resource/Processing/ImageCropScaleMaskTask.php
T

76 lines
2.2 KiB
PHP

<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Core\Resource\Processing;
use TYPO3\CMS\Core\Imaging\GraphicalFunctions;
use TYPO3\CMS\Core\Utility\GeneralUtility;
/**
* A task that takes care of cropping, scaling and/or masking an image.
*/
class ImageCropScaleMaskTask extends AbstractTask
{
protected ?string $targetFileExtension;
public function getType(): string
{
return 'Image';
}
public function getName(): string
{
return 'CropScaleMask';
}
/**
* Determines the file extension the processed file
* should have in the filesystem.
*/
public function getTargetFileExtension(): string
{
if (!isset($this->targetFileExtension)) {
$this->targetFileExtension = $this->determineTargetFileExtension();
}
return $this->targetFileExtension;
}
/**
* Gets the file extension the processed file should
* have in the filesystem by either using the configuration
* setting, or the extension of the original file.
*/
protected function determineTargetFileExtension(): string
{
if (!empty($this->configuration['fileExtension'])) {
return $this->configuration['fileExtension'];
}
// @todo - See note of determineDefaultProcessingFileExtension() - find a better place for this
$imageService = GeneralUtility::makeInstance(GraphicalFunctions::class);
return $imageService->determineDefaultProcessingFileExtension($this->getSourceFile()->getExtension());
}
public function getTargetFileName(): string
{
return 'csm_'
. $this->getSourceFile()->getNameWithoutExtension()
. '_' . $this->getConfigurationChecksum()
. '.' . $this->getTargetFileExtension();
}
}