Looking to hire Laravel developers? Try LaraJobs

laravel-image-preview maintained by tohtamysh

Description
Image preview for Laravel
Author
Last update
2019/03/06 09:09 (v1.1)
License
Downloads
169
Tags

Comments
comments powered by Disqus

Image preview for Laravel

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();