kujjs / resize-image
Resize images with predefined sizes
Installs: 1 396
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 4
Requires
- php: ^7.1.3
- anakadote/laravel-5-image-manager: dev-master
- illuminate/support: >=5.8
README
Based on anakadote/laravel-5-image-manager.
Resize images with predefined sizes in config / imageManager.php
Attention!!!!!!!!!!!!
important changes were made in how to obtain the cropped images, please read the new documentation.
If you don't want to replace the changes but want to use Auto-Discovery you can use version 5.5.0
Install
Edit your project's composer.json
"require": { "anakadote/laravel-5-image-manager": "dev-master", "kujjs/resize-image": "^0.5.5.1" }
Add the service provider. config/app.php
'providers' => [ kujjs\imageManager\imageManagerServiceProvider::class, // optional, you can use Auto-Discovery Anakadote\ImageManager\ImageManagerServiceProvider::class, ];
If not use Auto-Discovery your add next alias in config/app.php
'aliases' => [ ... 'Image' => 'kujjs\imageManager\Facades\ImageManager', ];
And run the following command
$ php artisan vendor:publish
Usage
Set sizes in config/imageManager.php
'sizes' => [ 'thumbnail' => [ 'width' => 120, 'height' => 120, 'mode' => 'crop', || fit || fit-x || fit-y 'quality' => 90 ] ];
Property | Description | |
---|---|---|
width |
required | The width of the generated image in pixels. |
height |
required | The height of the generated image in pixels. |
mode |
required | Defines the way the image will be transformed. See the table below for accepted modes |
quality |
required | The quality that will have the final image. range 0-100 |
Mode | Description |
---|---|
crop |
Will smart crop an image to make it fit the desired dimensions. It will cut content of the image off the top/bottom and sides if required to preserve the aspect ratio. |
fit |
Fit while maintaining aspect ratio |
fit-x |
Fit to the given width while maintaining aspect ratio |
fit-y |
Fit to the given height while maintaining aspect ratio |
Image::make($file , $size='thumbnail'))
{{ Image::make(public_path('img/image.jpg'),'thumbnail') }} OR {{ Image::make(public_path('img/image.jpg')) }}
Return
img/120-120/crop/image.jpg
Property | Description | |
---|---|---|
File |
required (string) | The fully qualified name of image file. The file must reside in your app's public directory. You'll need to grant write access by the web server to the public directory and its children |
Size Name |
(optional) (string) | The name of the size that is defined in config/imageManager.php. |
get full url
toUrl()
{{ Image::make(public_path('img/image.jpg'),'thumbnail')->toUrl() }}
return
http://mysite.dev/img/120-120/crop/image.jpg
Get tag img
toHtml( $attributes = [] )
{!! Image::make(public_path('img/image.jpg'),'thumbnail')->toHtml() !!}
Return
<img src="http://mysite.dev/img/120-120/crop/image.jpg">
Or
{!! Image::make(public_path('img/image.jpg'),'thumbnail')->toHtml(['class'=>'my-class','alt'=>'my alt','title'=>'my title', 'attributes'=>'values']) !!}
Return
<img src="http://mysite.dev/img/120-120/crop/image.jpg" "alt"="my alt" "title"="my title" "class"="my-class" "attributes"="values">
Property | Description | |
---|---|---|
attributes |
optional (array) | Attributes html you can inset in the tag img |
Remove
Image::delete($file)
remove image with all size declarade in config/imageManager.php
Image::delete(public_path('img/image.jpg'))
License
The MIT License (MIT). Please see License File for more information.