PHP code example of vertopal / vertopal-php

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

    

vertopal / vertopal-php example snippets



// Import Vertopal classes into the global namespace
use Vertopal\API\Credential;
use Vertopal\API\Converter;

// Load Composer Autoloader
 new Credential($app, $token);

// Convert and download your file using the Converter class
$converter = new Converter("MickeyMouse.gif", $credential);
$converter->convert("apng");
$converter->wait();
if ($converter->isConverted()) {
    $converter->download();
}
bash
composer