Recommend this page to a friend! |
Download |
Info | Example | Files | Install with Composer | Download | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2024-11-27 (9 days ago) | Not enough user ratings | Total: 132 This week: 1 | All time: 9,327 This week: 46 |
Version | License | PHP version | Categories | |||
nano-image 1.0.3 | GNU General Publi... | 5 | PHP 5, Graphics |
Description | Author | |
This class can resize local or remote images. |
<?php |
NanoImage is a simple PHP image resize class. It can resize images and display them in the browser or save images in a directory
Installation is super-easy via Composer:
composer require peterujah/nano-image
$image = new NanoImage();
try{
$image = $imagine->open("path/to/save/edit-image-size.jpg");
$image->resize(360, 200, false);
$image->save("path/to/save/new-image.jpg", NanoImage::THUMBNAIL, 80);
$image->resize(116, 80, false);
$image->saveAs("path/to/save/new-image.jpeg", NanoImage::THUMBNAIL, 100, NanoImage::JPEG);
$image->free();
}catch(UnsupportedImageException $e){
echo $e->getMessage();
}
$img = new Peterujah\NanoBlock\NanoImage();
Initialize nano image class for use
Open and load any image from a directory path & file name
$img->open(__DIR__ . "/path/to/assets/image.jpg");
Or load string containing the image data.
$img->load($image_data);
Resize an image with the exact width and height passed, for example, 200x200. To resize an image using the aspect ratio set the third parameter to true
$img->resize(200, 200, false||true);
Blur image
$img->blur(20);
Once image manipulation is done, display the output image on the browser. Pass quality of the image
$img->display($quality);
Save an image to a directory, the first parameter specifies the path, the second sets the image naming option, and the third is image quality (90 by default)
$img->save(__DIR__ . "/path/to/assets/new-image.jpg", NanoImage::DEFAULT, $quality);
Save image as
$img->saveAs($to, NanoImage::DEFAULT || NanoImage::THUMBNAIL || NanoImage::TIMESTAMP, $quality, self::JPEG)
Replace the existing image with a new one
$img->replace($to, $quality)
Remove temp image after editing and free memory
$img->remove()
Free memory
$img->free()
Files (7) |
File | Role | Description | ||
---|---|---|---|---|
src (2 files) | ||||
test (1 file) | ||||
composer.json | Data | Auxiliary data | ||
LICENSE | Lic. | License text | ||
package.json | Data | Auxiliary data | ||
readme.md | Doc. | Documentation |
Files (7) | / | src |
File | Role | Description |
---|---|---|
NanoImage.php | Class | Class source |
UnsupportedImageException.php | Class | Class source |
The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. |
Install with Composer |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.