ricardofiorani/php-legofy
Composer 安装命令:
composer require ricardofiorani/php-legofy
包简介
A PHP Port of Legofy
README 文档
README
What is this ?
PHP Legofy is a PHP package that takes a static image and makes it so that it looks as if it was built out of LEGO.
It was inspired by the original Legofy made in Python https://github.com/JuanPotato/Legofy
Basically it transforms this:
Into this:

Requirements
- PHP ^7.1 || ^8.0
- GD or ImageMagick
I tested it with GD only but I'm trusting intervention/image that this will work on ImageMagick as well.
Quickstart
Via composer:
$ composer require ricardofiorani/php-legofy
Via source:
$ git clone git@github.com:ricardofiorani/php-legofy.git
$ cd php-legofy
$ composer install
Usage:
<?php require 'vendor/autoload.php'; // The multiplier for the amount of legos on your image, or "legolution" :) $resolutionMultiplier = 1; // When set to true it will only use lego colors that exists in real world. $useLegoPalette = false; $legofy = new \RicardoFiorani\Legofy\Legofy(); // $source can be any acceptable parameter for intervention/image // Please see http://image.intervention.io/api/make $source = 'my/imagem/path/image.jpg'; /** *@var Intervention\Image\Image */ $output = $legofy->convertToLego($source, $resolutionMultiplier, $useLegoPalette); // Please see http://image.intervention.io/use/basics and http://image.intervention.io/use/http echo $output->response();
For more examples of usage please see the usage examples on documentation
统计信息
- 总下载量: 617
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 166
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-09-28