https://github.com/artisansweb/image-optimizer
Image optimization using PHP
https://github.com/artisansweb/image-optimizer
gif image jpg optimize performance php png
Last synced: 3 months ago
JSON representation
Image optimization using PHP
- Host: GitHub
- URL: https://github.com/artisansweb/image-optimizer
- Owner: artisansweb
- License: mit
- Created: 2020-03-12T11:29:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-11-30T00:33:17.000Z (over 5 years ago)
- Last Synced: 2025-10-31T21:22:52.279Z (5 months ago)
- Topics: gif, image, jpg, optimize, performance, php, png
- Language: PHP
- Homepage: https://artisansweb.net/image-optimization-using-artisansweb-image-optimizer-package
- Size: 5.23 MB
- Stars: 33
- Watchers: 0
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Image optimization using PHP
This library helps you to compress JPGs, PNGs, GIFs images on the fly. Apart from this package, you don't need to install any additional software or package to perform optimization task.
## Installation
You can install the package via composer:
```bash
composer require artisansweb/image-optimizer
```
Under the hood, this package uses [resmush.it](http://resmush.it) service to compress the images. Alternatively, package using native PHP functions - [imagecreatefromjpeg](https://www.php.net/manual/en/function.imagecreatefromjpeg.php), [imagecreatefrompng](https://www.php.net/manual/en/function.imagecreatefrompng.php), [imagecreatefromgif](https://www.php.net/manual/en/function.imagecreatefromgif.php), [imagejpeg](https://www.php.net/manual/en/function.imagejpeg.php).
## Usage
This package is straight-forward to use. All you need to do is pass source path of your image.
```php
use ArtisansWeb\Optimizer;
$img = new Optimizer();
$source = 'SOURCE_PATH_OF_IMAGE';
$img->optimize($source);
```
Above code will optimize the image and replace the original image with the optimized version.
Optionally, you can also pass destination path where optimized version will stored.
```php
$source = 'SOURCE_PATH_OF_IMAGE';
$destination = 'DESTINATION_PATH_OF_IMAGE';
$img->optimize($source, $destination);
```
Recommeded way of using this code is on image upload. The user should optimize image on upload which will result in better performance.
Let's say you want to store optimized version in the 'images' folder. You can use the below code for this purpose.
```php
optimize('images/'.$_FILES['file']['name']);
}
?>
```
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.