PHP code example of cloudinary / transformation-builder-sdk

1. Go to this page and download the library: Download cloudinary/transformation-builder-sdk 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/ */

    

cloudinary / transformation-builder-sdk example snippets


use Cloudinary\Transformation;

$transformation = new Transformation();

$transformation->resize(Resize::fill()->width(100)->height(150))->format(Format::auto());