tohtamysh / laravel-image-preview
Image preview for Laravel
Installs: 169
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/tohtamysh/laravel-image-preview
Requires
- php: >=7.0
- illuminate/support: 5.5.x|5.6.x|5.7.x|5.8.x
- intervention/image: ^2.4.2
Requires (Dev)
- laravel/framework: 5.7.x|5.8.x
README
The package creates thumbnails and stores them in storage.
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();