endroid / tile
Endroid Tile
Fund package maintenance!
endroid
Installs: 4 755
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: ^8.2
- imagine/imagine: ^1.2.4
- symfony/routing: ^5.4||^6.4||^7.0
- twig/twig: ^3.0
Requires (Dev)
- endroid/quality: dev-main
Suggests
- roave/security-advisories: Avoids installation of package versions with vulnerabilities
README
By endroid
This library helps you generate images containing a typically Delft blue tile with a saying.
Installation
Use Composer to install the library.
$ composer require endroid/tile
Usage
use Endroid\Tile\Tile; $tile = new Tile(); $this->setBackground(Tile::BACKGROUND_C); $tile->setText("Life is too short to be generating tiles"); $tile->setSize(300); $tile->render();
Symfony integration
Register the Symfony bundle in the kernel.
// app/AppKernel.php public function registerBundles() { $bundles = [ // ... new Endroid\Tile\Bundle\TileBundle\EndroidTileBundle(), ]; }
Add the following section to your routing to be able to reach the tile controller.
EndroidTileBundle: resource: "@EndroidTileBundle/Controller/" type: annotation prefix: /tile
Now tiles can be generated by appending the tile text to the url as mounted, followed by the file extension, like /tile/Life_is_too_short_to_be_generating_tiles.png.
Twig extension
The bundle also provides a Twig extension for quickly generating tile urls.
<img src="{{ tile_url(message) }}" />
Versioning
Version numbers follow the MAJOR.MINOR.PATCH scheme. Backwards compatibility breaking changes will be kept to a minimum but be aware that these can occur. Lock your dependencies for production and test your code when upgrading.
License
This bundle is under the MIT license. For the full copyright and license information please view the LICENSE file that was distributed with this source code.