Download the PHP package ba/php-ticons without Composer
On this page you can find all versions of the php package ba/php-ticons. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ba/php-ticons
More information about ba/php-ticons
Files in ba/php-ticons
Download ba/php-ticons
More information about ba/php-ticons
Files in ba/php-ticons
Please rate this library. Is it a good library?
Informations about the package php-ticons
PhpTiCons
Generate Titanium icons and splash screens
Based on Fokke Zandbergen TiCons project
Installation:
The library is PSR-0 compliant and the simplest way to install it is via composer, simply add:
{
"require": {
"ba/php-ticons": "dev-master"
}
}
into your composer.json, then run 'composer install' or 'composer update' as required.
Example:
This example demonstrates the generation of IOS and Android icons and splash screens based on a
1024x1024 png icon file and a 2208x2208 png splash screen.
<?php
use Econcepto\PHPTi\Medias\PhpTIcons;
include('vendor/autoload.php');
$generator = new PhpTIcons();
$generator
->setPlatforms([PhpTIcons::PLATFORM_IPHONE, PhpTIcons::PLATFORM_IPAD, PhpTIcons::PLATFORM_ANDROID])
->setOutputDir(__DIR__.'/my_titanium_project');
$generator->icons('my_base_icon.png');
$generator->splash('my_base_splash.png');
All versions of php-ticons with dependencies
PHP Build Version
Package Version
No informations.
The package ba/php-ticons contains the following files
Loading the files please wait ....