我正在尝试使用LiipImagineBundle。
好的,我到目前为止所有人:
在config.yml
中添加了liip_imagine过滤器使用php app / console路由器检查:调试和路径_imagine_my_thumb存在。
但使用后:
<img src="{{ '/relative/path/to/image.jpg' | imagine_filter('my_thumb') }}" />
图像未渲染,路径根本找不到错误。
prod.log表示Route _imagine_my_thumb不存在,虽然它存在,因为它是使用router:debug为两种环境显示的。
答案 0 :(得分:0)
您知道应该用图像路径替换'/relative/path/to/image.jpg'
吗?
确保您的文件存在。
一个工作示例
配置:
liip_imagine:
driver: gd
web_root: %kernel.root_dir%/../web
data_root: %kernel.root_dir%/../app
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:
avatar:
filters:
thumbnail: { size: [40, 40], mode: outbound }
profile:
filters:
relative_resize: { widen: 500 }
HTML:
<img src="{{ 'uploads/images/filename.jpg' | imagine_filter('avatar') }}" alt="image">
enter code here
的routing.yml:
_imagine:
resource: .
type: imagine
备注:我的源文件夹位于app文件夹中(请参阅:data_root)