承接 ba/php-ticons 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ba/php-ticons

最新稳定版本:0.1

Composer 安装命令:

composer require ba/php-ticons

包简介

Generate Titanium icons and splash screens - Based on Fokke Zandbergen TiCons project, see https://github.com/FokkeZB/TiCons

README 文档

README

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');

统计信息

  • 总下载量: 21
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Apache
  • 更新时间: 2015-01-19