https://github.com/aileshe/thumb
php缩略图生成组件
https://github.com/aileshe/thumb
php php5 php7 thumbs
Last synced: 10 months ago
JSON representation
php缩略图生成组件
- Host: GitHub
- URL: https://github.com/aileshe/thumb
- Owner: aileshe
- Created: 2018-04-10T01:46:01.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-11T02:36:37.000Z (almost 8 years ago)
- Last Synced: 2025-04-09T04:23:32.240Z (10 months ago)
- Topics: php, php5, php7, thumbs
- Language: PHP
- Homepage:
- Size: 23.4 KB
- Stars: 70
- Watchers: 0
- Forks: 18
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Thumb是什么?
Thumb是一个图片等比例缩放的PHP依赖,使用Thumb可以轻松生成不变形的缩略图。
# 安装
通过composer,这是推荐的方式,可以使用composer.json 声明依赖,或者直接运行下面的命令。
```
composer require aileshe/thumb:*
```
放入composer.json文件中
```
"require": {
"aileshe/thumb": "*"
}
```
然后运行
```
composer update
```
# 基本用法
1) 生成一张缩略图
```
$src = './public/upload/img_12.jpg'; // 原图路径
$output = './public/upload/img_12_thumb.jpg'; // 输出保存文件名
$width = 300; // 预生成缩略图的宽
$height = 200; // 预生成缩略图的高
\Thumb\Thumb::out($src,$output,$width,$height);
```
2) 生成缩略图直接输出图象到浏览器
```
$src = './public/upload/img_12.jpg'; // 原图路径
$width = 300; // 预生成缩略图的宽
$height = 200; // 预生成缩略图的高
\Thumb\Thumb::show($src,$width,$height);
```
3) 生成缩略图直接输出图象到浏览器并保存缩略图
```
$src = './public/upload/img_12.jpg'; // 原图路径
$output = './public/upload/img_12_thumb.jpg'; // 输出保存文件名
$width = 300; // 预生成缩略图的宽
$height = 200; // 预生成缩略图的高
\Thumb\Thumb::showOut($src,$output,$width,$height);
```
# 高级用法 - 自定义缩略剪裁
如一张纵向图片在固定宽高等比例缩放后得到的缩略图必须要剪裁部分,所以要么居中剪裁,要么顶部、底部剪裁再去掉多余部分。
```
缩略剪裁方式: middle、top、bottom (默认: 居中)
________________ ________________ ________________
| | | | | |
| | | top | | |
|________________| | | | |
| | |________________| | |
| middle | | | | |
| | | | |________________|
|----------------| | | | |
| | | | | bottom |
| | | | | |
|________________| |________________| |________________|
\Thumb\Thumb::out([原图路径],[缩图文件名],[缩略图宽],[缩略图高],[middle|top|bottom]);
\Thumb\Thumb::show([原图路径],[缩略图宽],[缩略图高],[middle|top|bottom]);
\Thumb\Thumb::showOut([原图路径],[缩图文件名],[缩略图宽],[缩略图高],[middle|top|bottom]);
```
# 联系
Author: Dejan
QQ : 673008865