在自定义ViewHelper中调整图像大小

时间:2016-10-14 08:35:54

标签: typo3 fluid

我有一个处理一些图像的ViewHelper。我有一个原始文件的图像路径。我需要调整此图像的大小。

我可以在TYPO3中使用PHP代码来执行此操作吗?

我试过了:

$imgPath = 'img/path/from_database.jpg
$imgConf = array();
$imgConf['file'] = $imgPath;
$imgConf['altText'] = "Sample alt text.";
$image = $this->cObj->IMAGE($imgConf);

但我得到了这个例外:"Call to a member function IMAGE() on null"

我的ViewHelper继承自:\TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper

1 个答案:

答案 0 :(得分:7)

首先,您应该说明您使用的TYPO3版本,以及您的扩展程序是否使用Extbase或旧的pibased代码。

我猜这是Extbase,因为你继承了命名空间的viewhelper。我的建议是查看原始的f:image viewhelper代码(TYPO3\CMS\Fluid\ViewHelpers\ImageViewHelper)并复制您需要的内容。

首先将此添加到viewhelper的顶部:

/**
 * @var \TYPO3\CMS\Extbase\Service\ImageService
 * @inject
 */
protected $imageService;

然后是方法中的代码

$image = $this->imageService->getImage($imgPath);

// you have to set these variables or remove if you don't need them
$processingInstructions = array(
    'width' => $width,
    'height' => $height,
    'minWidth' => $minWidth,
    'minHeight' => $minHeight,
    'maxWidth' => $maxWidth,
    'maxHeight' => $maxHeight,
    'crop' => $crop,
);
$processedImage = $this->imageService->applyProcessingInstructions($image, $processingInstructions);
$imageUri = $this->imageService->getImageUri($processedImage);

$imageUri现在保存了经过调整大小的图像的路径。

PS:您复制的示例来自自7.x分支以来不再存在的旧的pibased系统。