tohtamysh/laravel-image-preview

This package is abandoned and no longer maintained. No replacement package was suggested.

Image preview for Laravel

v1.1 2019-03-06 08:09 UTC

This package is auto-updated.

Last update: 2021-03-06 16:29:08 UTC


README

The package creates thumbnails and stores them in storage.

Latest Stable Version License

URL example:

/preview/w100h200cr000000ext/news/file.jpg

create thumbnail with

width - 100px

height - 200px

background color - #000000

ext - extention

Programmatically create thumbnail

$imagePreview = new ImagePreview(['width' => 200, 'file' => $path]);

$cachePath = $imagePreview->createThumbnail();