A class to convert your image URLs to Imagelint URLs
You can add this library to your project using Composer:
composer require imagelint/imagelint-php
Imagelint\Imagelint::get('http://yoursite.com/img/cat.jpg')
The code above yields the output below:
https://a1.imagelint.com/yoursite.com/img/cat.jpg
Imagelint\Imagelint::get('http://yoursite.com/img/cat.jpg', ['width' => 200])
The code above scales the image to a width of 200px.