Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonathanprince/img-resize-php
Image resizer class for php
https://github.com/jonathanprince/img-resize-php
Last synced: 11 days ago
JSON representation
Image resizer class for php
- Host: GitHub
- URL: https://github.com/jonathanprince/img-resize-php
- Owner: JonathanPrince
- Created: 2014-10-28T10:50:57.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-29T15:59:09.000Z (almost 10 years ago)
- Last Synced: 2024-04-16T08:46:33.086Z (7 months ago)
- Language: PHP
- Size: 203 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Image Resizer Class for PHP
**Example**
```php
// include resizer class
include './resizer.php';// create new instance of resizer
$image = new Resizer('/path/to/original/image.jpg');// call resize method with desired width and height
$image->resize(640, 360);// save resized image, quality setting: 1(low quality) - 10(high quality)
$image->save('/path/to/resized/image.jpg', 10);```