square1/resized

On-demand image manipulation service.

v1.3.0 2021-09-16 10:07 UTC

This package is auto-updated.

Last update: 2024-03-16 16:03:35 UTC


README

This is the PHP client for resized.co, a realtime image resize manipulation service.

Install

Via Composer

$ composer require square1/resized

Usage

    //Initialize and authenticate
    $resized = new \Square1\Resized\Resized('key', 'secret');

    //Override host if applicable
    $resized->setHost('https://img.resized.co');

    //Set the default failover image
    $resized->setDefaultImage('http:/www.example.com/no-image.jpg');

    //Set default options
    $resized->setDefaultOptions(['quality' => 100]);

    //Process image resize with the parameters: ($url, $width, $height, $title)
    $img = $resized->process('http://www.example.com/some-image.jpg', '100', '100', 'This is a title');

Testing

$ composer test

License

The MIT License (MIT). Please see License File for more information.