Gregwar\Image\Image::fromResource PHP Method

fromResource() public static method

Creates an instance of image from resource.
public static fromResource ( $resource )
    public static function fromResource($resource)
    {
        $image = new static();
        $image->setResource($resource);
        return $image;
    }

Usage Example

Example #1
0
<?php

$data = 'iVBORw0KGgoAAAANSUhEUgAAABwAAAASCAMAAAB/2U7WAAAABl' . 'BMVEUAAAD///+l2Z/dAAAASUlEQVR4XqWQUQoAIAxC2/0vXZDr' . 'EX4IJTRkb7lobNUStXsB0jIXIAMSsQnWlsV+wULF4Avk9fLq2r' . '8a5HSE35Q3eO2XP1A1wQkZSgETvDtKdQAAAABJRU5ErkJggg==';
$data = base64_decode($data);
require_once '../Image.php';
use Gregwar\Image\Image;
$gd = imagecreatefromstring($data);
Image::fromResource($gd)->save('out.jpg');
All Usage Examples Of Gregwar\Image\Image::fromResource