PHP code example of ozden / imageconverter

1. Go to this page and download the library: Download ozden/imageconverter 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/ */

    

ozden / imageconverter example snippets

javascript

0);
ini_set('memory_limit', '-1');

$awsCredentials = [
    'key' => 'YOUR_AWS_KEY',
    'secret' => 'YOUR_AWS_SECRET'
];

$converter = new Ozden\Converter();
$converter->setRegion('YOUR_REGION');
$converter->setBucket('YOUR_BUCKET');
$converter->connectAws($awsCredentials);

// S3 Prefix. (If you don't want to use prefix, then leave empty first argument)
// You want to convert extensions. Array
// Webp quality. 0-100. 0: worst, 100: best
// If you set true, the script will delete old jpg/png file on your S3 after upload webp file.

$result = $converter->start('backup/2022/07/', ['jpg', 'jpeg', 'jfif', 'png', 'webp'], 70, false);
var_dump($result);