houdunwang / image
图片组件提供了缩略图、水印等图像处理功能
Installs: 1 540
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: >=5.4.0
- houdunwang/config: ~1.0
Requires (Dev)
- phpunit/phpunit: ^6.1
This package is auto-updated.
Last update: 2024-11-13 05:21:18 UTC
README
图片组件提供了缩略图、水印等图像处理功能。
请 查看在线手册 进行学习
####设置配置
$config = [
//水印字体
'font' => '',
//水印图像
'image' => '',
//位置 1~9九个位置 0为随机
'pos' => 9,
//透明度
'pct' => 60,
//压缩比
'quality' => 80,
//水印文字
'text' => 'houdunwang.com',
//文字颜色
'text_color' => '#f00f00',
//文字大小
'text_size' => 12,
];
\houdunwang\config\Config::set( 'image', $config );