quazardous / imagestack-bundle
ImageStack Bundle
Installs: 109
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.1.0
- doctrine/doctrine-cache-bundle: ^1.3
- quazardous/imagestack: ^1.5.3
- sensio/framework-extra-bundle: ^5.2
- symfony/framework-bundle: ^4.0
Requires (Dev)
- phpunit/phpunit: ^7.5
- twig/twig: ^2.6
README
A PHP image serving framework.
The main goal is to provide a robust framework to create an "on the fly" image thumbnailer generator similar to imagecache / image style in Drupal.
You can also use it to build a singlepoint multipurpose proxy server on top of a "complex" / legacy(ish) / not-yet-migrated images structure.
Here is a Symfony 4 bundle for ImageStack.
Installation
composer require quazardous/imagestack-bundle
Config
Usage
The above config will let you have a ./images/
private folder hold original images and serves them from images/...
.
It defines some thumbnail rules and activates images optimizers.
Say you need to display ./images/foo/cool_image.jpg
with thumbnail style.
Just hit images/style/thumb/foo/cool_image.jpg
and voilĂ !
Behind the curtain, Imagestack we generate and optimize images/style/thumb/foo/cool_image.jpg
, store it in ./public/images/style/thumb/foo/cool_image.jpg
and serve it to your browser.
So next HTTP call will be statically serverd.
Advanced usage
With Imagestack you can stack components like bricks.
Say you need to serve images from your new CMS but also images from old stuff you have imported "as it" with heteroclite image sources...
You can build a stack with a sequential image backend wich will try to fetch given path from different backends including "legacy" HTTP Proxy backends.
You can of course internally rewrite the path with "kitchen rules" to fetch the legacy images.
Twig
Imagestack has a Twig filter and function imagestack
.
... <img src="{{ 'foo/cool_image.jpg'|imagestack('style/thumb') }}"/> ...
Changelog
- 1.3: hello Github
- 1.0: hello SF4