tihiy-production/php-image-compressor
最新稳定版本:v2.4.0
Composer 安装命令:
composer require tihiy-production/php-image-compressor
包简介
ImageCompressor - this is an easy way to compress images on the fly
README 文档
README
ImageCompressor - this is an easy way to compress images on the fly.
Requirements
The following libraries need to be installed:
Jpegoptim & Pngquant
sudo apt-get -y install jpegoptim pngquant
Installation
Execute the following command to install this package as a dependency in your project:
composer require "tihiy-production/php-image-compressor"
Usage
You can choose a local file as the source and write it to another file.
$source = tihiy\Compressor\ImageCompressor::sourceFile('uncompressed.jpg'); $source->toFile('compressed.jpg');
You can upload an image content as the source and get the compressed image data.
$sourceData = file_get_contents('uncompressed.jpg'); $resultData = tihiy\Compressor\ImageCompressor::sourceContent($sourceData)->toContent();
You can specify URL as a source to the image and compress it without having to upload.
$source = tihiy\Compressor\ImageCompressor::sourceUrl('https://example.com/uncompressed.jpg'); $source->toFile('compressed.jpg');
License
This software is licensed under the MIT License. View the license.
统计信息
- 总下载量: 3.94k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 24
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-02-03