Skip to content

JakubSvestka/nette-webimages

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Requirements

Installation

  1. Copy source codes from Github or using Composer:
$ composer require dotblue/nette-webimages
  1. Register as Configurator's extension:
extensions:
	webimages: DotBlue\WebImages\Extension

Concept

This addon gives you power to automatically generate different sized versions of images throughout your app. When browser will request new version of image, application will generate it and save it to its requested destination, so that in next HTTP request, your server will just serve existing file.

To enable this, modify your .htaccess:

# front controller
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !\.(pdf|js|ico|gif|css|rar|zip|tar\.gz)$ index.php [L]

Usage

First, you have to define your DotBlue\WebImages\IProvider implementation. Its responsibility is to generate new version of image using Nette\Image. Check examples for inspiration - the only required method getImage should return Nette\Image instance of queried image.

When you have it, register it in configuration:

webimages:
	providers:
		- <name of your class>

Secondly you have to specify route where your images will be available. Central point of the route is id parameter, which should uniquely identify your image. Lets setup simple route:

webimages:
	routes:
		- images/<id>-<width>x<height>.jpg

By default all these routes will be prepended before your other routes - assuming you use Nette\Application\Routers\RouteList as your root router. You can disable this by setting prependRoutesToRouter: false. Then it's your responsibility to plug webimages router (service webimages.router) to your routing implementation.

Addon gives you new macro n:src. Now you're ready to use it.

<img n:src="foo, 200, 150">

This will result in following HTML:

<img src="/images/foo-200x150.jpg">

Creation of this file will handle your implementation of DotBlue\WebImages\IProvider.

About

On-the-fly generated web images for your Nette app

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%