我正在使用 liipImagineBundle 并尝试将过滤器直接应用到控制器中。
在文档中,我找到了两个部分,其中解释了如何从控制器中使用 liipImagineBundle。这个https://github.com/liip/LiipImagineBundle#using-the-controller-as-a-service
public function indexAction()
{
// RedirectResponse object
$imagemanagerResponse = $this->container
->get('liip_imagine.controller')
->filterAction(
$this->getRequest(),
'uploads/foo.jpg', // original image you want to apply a filter to
'my_thumb' // filter defined in config.yml
);
// string to put directly in the "src" of the tag <img>
$srcPath = $imagemanagerResponse->headers->get('location');
// ..
}
和https://github.com/liip/LiipImagineBundle/blob/master/Resources/doc/filters.md#dynamic-filters
public function filterAction(Request $request, $path, $filter)
{
$targetPath = $this->cacheManager->resolve($request, $path, $filter);
if ($targetPath instanceof Response) {
return $targetPath;
}
$image = $this->dataManager->find($filter, $path);
$filterConfig = $this->filterManager->getFilterConfiguration();
$config = $filterConfig->get($filter);
$config['filters']['thumbnail']['size'] = array(300, 100);
$filterConfig->set($filter, $config);
$response = $this->filterManager->get($request, $filter, $image, $path);
if ($targetPath) {
$response = $this->cacheManager->store($response, $targetPath, $filter);
}
return $response;
}
我按照“将控制器用作服务”中的说明进行了测试,它可以工作,我遇到的问题是我不知道如何访问过滤器设置来修改它。
liip_imagine:
driver: gd
web_root: %kernel.root_dir%/../web
data_root: %kernel.root_dir%/../web
cache_mkdir_mode: 0777
cache_prefix: /media/cache
cache: web_path
cache_clearer: true
data_loader: filesystem
controller_action: liip_imagine.controller:filterAction
formats: []
filter_sets:
my_thumb:
filters:
crop: { start: [0, 0], size: [200, 150] }
my_paste:
quality: 90
filters:
paste: { start: [30, 60], image: ../web/uploads/images/firma.jpg }
第二个,真的,当他说“使用自定义数据加载器......”时,我不明白。
在示例中,他仅修改了 ImagineController 类 (Liip\ImagineBundle\Controller) 中的方法 filteraction()。我想知道如何动态修改该方法?例如来自我的控制器 indexAction()。
我也读过这篇文章https://stackoverflow.com/questions/16166719/loading-your-custom-filters-with-liipimaginebundle其中@NSCoder 说“您可以使用内置过滤器并修改它们的配置。” 但我不明白。
我一直在寻找几天,但我还没有找到一个可以开始的例子。