PHP code example of janwebdev / symfony-intervention-image-bundle

1. Go to this page and download the library: Download janwebdev/symfony-intervention-image-bundle 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/ */

    

janwebdev / symfony-intervention-image-bundle example snippets



// ./config/bundles.php

return [
    // ...
    Janwebdev\ImageBundle\ImageBundle::class => ['all' => true],
];


// ...
use Janwebdev\ImageBundle\Image;
// ...
public function processImage(Image $image)
{
    $pathToFile = "public/foo.jpg";
    $image->create($pathToFile)->resize(300, 200)->save('public/bar.jpg', 80);
    //or
    $img1 = $image->create(file_get_contents('public/foo.jpg'));
    //or
    $img2 = $image->create(imagecreatefromjpeg('public/foo.jpg'));
    //or
    $img3 = $image->create('http://example.com/example.jpg');
    $img3->crop(100, 100, 25, 25);
    $img3->save('public/baz.jpg', 60);
}
// ...