bigyouth/image-resizer-bundle
Composer 安装命令:
composer require bigyouth/image-resizer-bundle
包简介
README 文档
README
What is it ?
This bundle gives you a simple way to generate resized images (using LiipImagineBundle) with dynamical sizes directly from your Controller or views.
Requirements
"php": "^5.3.9|^7.0",
"liip/imagine-bundle": "^1.8"
Installation
Download the bundle
Download composer at https://getcomposer.org/download/
composer require bigyouth/image-resizer-bundle 1.0.*
Register the bundle
Then, enable the bundle by adding it to the bundles array of the registerBundles method in your project's app/AppKernel.php file:
<?php
# app/AppKernel.php
// ...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = [
// ...
new Bigyouth\BigyouthImageResizerBundle\BigyouthImageResizerBundle(),
];
// ...
}
// ...
}
Add routing
# app/config/routing.yml
by_resizer:
resource: "@BigyouthImageResizerBundle/Controller"
type: annotation
Configuration
First you need to install and configure the LiipImagineBundle. We recommend to set the default configuration without sizes specified :
# app/config/config.yml
liip_imagine:
filter_sets:
cache: ~
default:
quality: 95
filters:
thumbnail: { mode: inset }
Usage
In your controller
To use the ImageResizerBundle in your controller, you only have to generate the by_resize route with the router service :
<?php
// ...
/**
* Class PageController
*
* @package Bigyouth\FrontBundle\Controller
*/
class PageController extends PageCacheController
{
// ...
public function indexAction(Request $request)
{
// ...
$route = $this->generateUrl('by_resize', [
'filter'=> 'default',
'path' => '/uploads/images/my-image.jpg',
'w' => 1280,
'h' => 720
]);
}
}
filter
default : 'default'
The name of the filter you setted in app/config/config.yml within the LiipImagineBundle configuration and which you wish to use.
path
The web path of the image you wish to resize.
w
default : null
The width you want to set to your image.
h
default : null
The height you want to set to your image.
In your views
In your views, you can use the Twig extension by_resize as follows :
// ...
{{ by_resize('/uploads/images/my-image.jpg', 1280, 720, 'default', 'https') }}
// ...
path
The web path of the image you wish to resize.
w
default : null
The width you want to set to your image.
h
default : null
The height you want to set to your image.
filter
default : 'default'
The name of the filter you setted in app/config/config.yml within the LiipImagineBundle configuration and which you wish to use.
scheme
default : 'http'
The scheme in which you want the url to be generated.
author : Alexis Smadja
bigyouth/image-resizer-bundle 适用场景与选型建议
bigyouth/image-resizer-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 54 次下载、GitHub Stars 达 2, 最近一次更新时间为 2018 年 03 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 bigyouth/image-resizer-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 bigyouth/image-resizer-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 54
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 10
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-03-01