我已经阅读了在Symfony 3中安装和使用LiipImagineBundle的文档,当我想调整通过我的管理界面上传的图像时,它变得模糊。如果编辑发布了一张非常大的图片,我希望它会自动调整大小以显示在我的网站上。我不明白为什么我的图像变得非常模糊,并且没有调整到指定的大小..
config.yml:
liip_imagine:
filter_sets:
# name our filter set "my_thumb_filter"
my_thumb_filter:
filters:
# use and setup the "thumbnail" filter
thumbnail:
# set the thumbnail size to "500x500" pixels
size: [500, 500]
# crop the input image, if required
mode: outbound
Twig:
<img src="{{ ('bundles/sg/images/articles/' ~ article.image2.file ~ '.' ~ article.image2.extension) | imagine_filter('my_thumb_filter') }}" alt="{{ article.titre }}">
我创建了一个媒体/缓存文件夹,我的图片正确放置在“文章”文件夹中(http://localhost/SG/web/media/cache/my_thumb_filter/bundles/sg/images/articles/c71068976ec6efefc3c3c75886c6089b.jpeg)
提前感谢您的帮助