我需要在 zend 框架 2 中实现图像调整大小功能(最好使用 gd2 库扩展)。
我找不到任何相同的组件/助手。有参考吗?
如果我想创建一个,我应该在哪里添加它。在旧的 Zend 框架中,有一个 Action Helper 的概念,那么 Zend 框架 2 呢?
请在此处提出最佳解决方案。
我需要在 zend 框架 2 中实现图像调整大小功能(最好使用 gd2 库扩展)。
我找不到任何相同的组件/助手。有参考吗?
如果我想创建一个,我应该在哪里添加它。在旧的 Zend 框架中,有一个 Action Helper 的概念,那么 Zend 框架 2 呢?
请在此处提出最佳解决方案。
我目前使用Imagine和Zend Framework 2来处理这个问题。
php composer.phar require imagine/Imagine:0.3.*
为服务创建服务工厂Imagine
(在 中YourModule::getServiceConfig
):
return array(
'invokables' => array(
// defining it as invokable here, any factory will do too
'my_image_service' => 'Imagine\Gd\Imagine',
),
);
在你的逻辑中使用它(这里是一个带有控制器的小例子):
public function imageAction()
{
$file = $this->params('file'); // @todo: apply STRICT validation!
$width = $this->params('width', 30); // @todo: apply validation!
$height = $this->params('height', 30); // @todo: apply validation!
$imagine = $this->getServiceLocator()->get('my_image_service');
$image = $imagine->open($file);
$transformation = new \Imagine\Filter\Transformation();
$transformation->thumbnail(new \Imagine\Image\Box($width, $height));
$transformation->apply($image);
$response = $this->getResponse();
$response->setContent($image->get('png'));
$response
->getHeaders()
->addHeaderLine('Content-Transfer-Encoding', 'binary')
->addHeaderLine('Content-Type', 'image/png')
->addHeaderLine('Content-Length', mb_strlen($imageContent));
return $response;
}
这显然是“快速而肮脏”的方式,因为您应该执行以下操作(可选但可重用性良好的做法):
为此使用服务并将其注入需要该功能的控制器。
这是Zend Framework 2中一个名为WebinoImageThumb的模块。检查一下。它具有一些很棒的功能,例如-
对于Imagine
像我这样无法正确整合的人..
我在这里找到了另一个解决方案WebinoImageThumb,它对我来说非常好用。如果您不想阅读完整的文档,这里几乎没有解释:
运行:php composer.phar require webino/webino-image-thumb:dev-develop
并添加WebinoImageThumb
为活动模块,config/application.config.php
其中进一步如下所示:
<?php
return array(
// This should be an array of module namespaces used in the application.
'modules' => array(
'Application',
'WebinoImageThumb'
),
..下面保持不变
现在在您的控制器操作中,通过服务定位器使用它,如下所示:
// at top on your controller
use Zend\Validator\File\Size;
use Zend\Validator\File\ImageSize;
use Zend\Validator\File\IsImage;
use Zend\Http\Request
// in action
$file = $request->getFiles();
$fileAdapter = new \Zend\File\Transfer\Adapter\Http();
$imageValidator = new IsImage();
if ($imageValidator->isValid($file['file_url']['tmp_name'])) {
$fileParts = explode('.', $file['file_url']['name']);
$filter = new \Zend\Filter\File\Rename(array(
"target" => "file/path/to/image." . $fileParts[1],
"randomize" => true,
));
try {
$filePath = $filter->filter($file['file_url'])['tmp_name'];
$thumbnailer = $this->getServiceLocator()
->get('WebinoImageThumb');
$thumb = $thumbnailer->create($filePath, $options = [], $plugins = []);
$thumb->adaptiveResize(540, 340)->save($filePath);
} catch (\Exception $e) {
return new ViewModel(array('form' => $form,
'file_errors' => array($e->getMessage())));
}
} else {
return new ViewModel(array('form' => $form,
'file_errors' => $imageValidator->getMessages()));
}
祝你好运..!!
为了即时调整上传图像的大小,您应该这样做:
public function imageAction()
{
// ...
$imagine = $this->getImagineService();
$size = new \Imagine\Image\Box(150, 150);
$mode = \Imagine\Image\ImageInterface::THUMBNAIL_INSET;
$image = $imagine->open($destinationPath);
$image->thumbnail($size, $mode)->save($destinationPath);
// ...
}
public function getImagineService()
{
if ($this->imagineService === null)
{
$this->imagineService = $this->getServiceLocator()->get('my_image_service');
}
return $this->imagineService;
}