hoangdung / imagescale
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
pkg:composer/hoangdung/imagescale
Requires
- php: >=7.0
- intervention/image: ^2.4
This package is auto-updated.
Last update: 2025-10-20 01:08:16 UTC
README
A package that helps you resize and optimize an image.
Installation
composer require hoangdung/imagescale --dev
Copy the package config to your local config with the publish command:
php artisan vendor:publish --provider="Hoangdung\Imagescale\ImageScaleProvider"
Usage
// parameter image file or url $image = new ImageScale($imageFile) $img->resizeWidthHeight(600, 600); // large, medium, small $img->resizeOption('small'); $image->save($path. $fileName));