- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 liipImagineBundle 并尝试将过滤器直接应用到 Controller 中。
在文档中,我发现了两个部分,其中解释了如何从 Controller 使用 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');
// ..
}
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 }
最佳答案
寻找更多我发现了另一个 LiipImagineBundle 主题 (Use LiipImagineBundle to Resize Image after Upload?),它帮助我做我想做的事。
在这里我留下我用来动态应用过滤器的代码
public function indexAction()
{
$container = $this->container;
# The controller service
$imagemanagerResponse = $container->get('liip_imagine.controller');
# The filter configuration service
$filterConfiguration = $container->get('liip_imagine.filter.configuration');
# Get the filter settings
$configuracion = $filterConfiguration->get('my_thumb');
# Update filter settings
$configuracion['filters']['crop']['size'] = array(50, 150);
$configuracion['filters']['crop']['start'] = array(10, 10);
$filterConfiguration->set('my_thumb', $configuracion);
# Apply the filter
$imagemanagerResponse->filterAction($this->getRequest(),'uploads/images/logo.jpg','my_thumb');
# Move the img from temp
$fileTemporal = new File('media/cache/my_thumb/uploads/images/logo.jpg');
$fileTemporal->move('uploads/images/', 'mini-logo.jpg');
####################################
}
关于image - 带有 liipImagineBundle 的动态过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16323435/
我有这个配置: liip_imagine: resolvers: default: web_path: ~ filter_sets:
我只是想开始工作 LiipImagineBundle。 好的,到目前为止我所得到的: 使用composer安装 $ php composer.phar 需要“liip/imagine-bundle:d
我正在为我的 symfony 项目安装 bundle LiipImagineBundle。我将它添加到内核中,对其进行配置: liip_imagine: resolvers: default:
我正在为我的 symfony 项目安装 bundle LiipImagineBundle。我将它添加到内核中,对其进行配置: liip_imagine: resolvers: default:
我正在使用 liipImagineBundle,但无法正常工作。一切都已正确安装,但当我尝试应用过滤器时,解析器不会创建图像。 生成的html代码: 如果我打开控制台并调用 php app/con
我正在使用 liipImagineBundle 并尝试将过滤器直接应用到 Controller 中。 在文档中,我发现了两个部分,其中解释了如何从 Controller 使用 liipImagineB
我正在使用 liipimaginebundle,除了在更新原始图像时删除和更新缓存图像外,一切正常。我想知道我该怎么做 配置.yml liip_imagine: resolvers: defau
我想使用 LiipImagineBundle 调整 Controller 中上传图片的大小。 $extension = $file->guessExtension(); $newfilenam
我刚刚安装了 liipimaginebundle,但它不起作用,也没有创建文件夹和图像 app/config/routing.yml: _liip_imagine: resource: "@LiipI
Liip imagine Bundle 不会为其中一个 imagine 过滤器创建缓存文件夹。 liip_imagine: resolvers: default: web_pat
我是 symfony2 的新手。我正在使用 liipImagineBundle 来管理图像缩略图。我有一个使用生命周期回调来管理产品图像的产品实体类。 产品.php image ? n
以下是我遵循的步骤: 在我的composer.json中添加了以下内容: "require": { "imagine/Imagine": ">=0.2.8", "liip/imag
我目前正在开发一些用户在后端上传图片的可能性。这些图像应该稍后在移动应用程序上呈现。 我正处于开发的早期阶段,我想调整任何用户上传到服务器的图像的大小。但是现在我在本地使用 Wamp,当我想对大约 1
我做了以下事情: img_path = 'abc.jpg' 所以我想使用 https 的 url。目前我正在使用 http 获取 url。 我在参数中设置了 router.request_conte
我是一名优秀的程序员,十分优秀!