长城期货
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
xiaodong cb3e031fef 首页调整 2 weeks ago
..
src 代码提交2026年7月20日16H 2 weeks ago
tests 代码提交2026年7月20日16H 2 weeks ago
.gitignore 代码提交2026年7月20日16H 2 weeks ago
.travis.yml 代码提交2026年7月20日16H 2 weeks ago
LICENSE 代码提交2026年7月20日16H 2 weeks ago
README.md 代码提交2026年7月20日16H 2 weeks ago
composer.json 代码提交2026年7月20日16H 2 weeks ago
phpunit.xml 代码提交2026年7月20日16H 2 weeks ago

README.md

The ThinkPHP5 Image Package

Build Status Coverage Status Downloads Releases Releases Downloads Packagist Status Packagist Downloads

安装

composer require topthink/think-image

使用

$image = \think\Image::open('./image.jpg');
或者
$image = \think\Image::open(request()->file('image'));


$image->crop(...)
    ->thumb(...)
    ->water(...)
    ->text(....)
    ->save(..);