goldenline/imgix-bundle
最新稳定版本:1.0.0
Composer 安装命令:
composer require goldenline/imgix-bundle
包简介
Integration of the imgix library into Symfony
关键字:
README 文档
README
Integration of the imgix library into Symfony.
Installation
The best way to install this bundle is by using Composer. Simply run:
$ php composer.phar require goldenline/imgix-bundle dev-master
Then, enable the bundle:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new GoldenLine\ImgixBundle\GoldenlineImgixBundle(), ); }
Finally add your sources:
goldenline_imgix: default_source: folder sources: folder: domains: [ acme.imgix.net ] proxy: domains: [ acme-proxy.imgix.net ] sign_key: abcd1234
Usage
In your Twig template just do:
<!-- Absolute URL with a web proxy source --> <img src="{{ imgix('https://assets-cdn.github.com/images/modules/logos_page/Octocat.png', source='proxy', width=200, height=166) }}" width="200" height="166"/> <!-- Absolute path with a web folder source --> <img src="{{ imgix('images/modules/logos_page/Octocat.png', width=200, height=166) }}" width="200" height="166"/>
License
This bundle is released under the MIT license. See the complete license in the bundle:
Resources/meta/LICENSE
统计信息
- 总下载量: 26.11k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-10-24