1. Go to this page and download the library: Download pyrsmk/imagix library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// Convert image to grayscale
$imagix->grayscale();
// Resize the image to a maximum of 600x400 by keeping the ratio
$imagix->resize(600,400);
// Add a black border of 3px around the image
$imagix->border(3);
// Save the image
$imagix->save('mynewimage.jpg');
// For the JPEG adapter
$imagix->save('image.jpg',array(
// defaults to 80
'quality' => 95
));
// For the PNG adapter
$imagix->save('image.jpg',array(
// a value between 0 and 9 (by default)
'quality' => 7,
// for a better understanding on PNG filters, take a look at :
// https://stackoverflow.com/questions/3048382/in-php-imagepng-accepts-a-filter-parameter-how-do-these-filters-affect-the-f
'filters' => PNG_NO_FILTER
));