6

我需要在 zend 框架 2 中实现图像调整大小功能(最好使用 gd2 库扩展)。

我找不到任何相同的组件/助手。有参考吗?

如果我想创建一个,我应该在哪里添加它。在旧的 Zend 框架中,有一个 Action Helper 的概念,那么 Zend 框架 2 呢?

请在此处提出最佳解决方案。

4

5 回答 5

17

我目前使用ImagineZend Framework 2来处理这个问题。

  1. 安装想象:php composer.phar require imagine/Imagine:0.3.*
  2. 为服务创建服务工厂Imagine(在 中YourModule::getServiceConfig):

    return array(
        'invokables' => array(
            // defining it as invokable here, any factory will do too
            'my_image_service' => 'Imagine\Gd\Imagine',
        ),
    );
    
  3. 在你的逻辑中使用它(这里是一个带有控制器的小例子):

    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;
    }
    

这显然是“快速而肮脏”的方式,因为您应该执行以下操作(可选但可重用性良好的做法):

  1. 可能在服务中处理图像转换
  2. 从服务中检索图像
  3. 使用输入过滤器来验证文件和参数
  4. 缓存输出(最终参见http://zend-framework-community.634137.n4.nabble.com/How-to-handle-404-with-action-controller-td4659101.html )

相关:Zend Framework - 使用控制器返回图像/文件

于 2013-02-12T13:11:13.240 回答
2

为此使用服务并将其注入需要该功能的控制器。

于 2013-02-12T12:56:51.420 回答
2

这是Zend Framework 2中一个名为WebinoImageThumb的模块。检查一下。它具有一些很棒的功能,例如-

  • 图像调整大小
  • 图像裁剪、填充、旋转、显示和保存图像
  • 创建图像反射
于 2014-01-01T10:19:48.433 回答
2

对于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()));
  }

祝你好运..!!

于 2016-01-21T16:03:08.050 回答
0

为了即时调整上传图像的大小,您应该这样做:

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;
}
于 2013-03-20T21:14:35.797 回答