Download the PHP package brand3000/nova-advanced-image-field without Composer
On this page you can find all versions of the php package brand3000/nova-advanced-image-field. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download brand3000/nova-advanced-image-field
More information about brand3000/nova-advanced-image-field
Files in brand3000/nova-advanced-image-field
Package nova-advanced-image-field
Short Description An advanced image field for Nova with cropping and resizing.
License MIT
Informations about the package nova-advanced-image-field
The original package was adapted for Laravel 11.
Default library is set to be GD. The Intervention Image package was updated to the version 3.
The rest of this documentation was forked from the original package:
Nova Advanced Image Field
An advanced image field for Nova allowing you to upload, crop and resize images
This package is built on top of the native Nova image field. It uses Advanced Cropper to show a cropper on the frontend, and Intervention Image to process the image on the backend.
Requirements
Version | PHP | Nova | GD (default) | Imagick |
---|---|---|---|---|
1.x | >=7.1 | 2 or 3 | >=2.0 | >=6.5.7 |
2.x | >=7.3 | 4 |
See Intervention requirements for more details.
Getting started
Install the package into a Laravel application with Nova using Composer:
If you want to use Imagick as the default image processing library, follow the Intervention documentation for Laravel. This will provide you with a new configuration file where you can specify the driver you want.
Code examples
AdvancedImage
extends from Image
so you can use any methods that Image
implements. See the documentation here.
To display the image as a rounded avatar, use the AdvancedAvatar
class or the rounded
method:
API
driver(string $driver)
Override the default driver to be used by Intervention for the image manipulation.
croppable([float $ratio])
Specify if the underlying image should be croppable.
If a numeric value is given as a first parameter, it will be used to define a fixed aspect ratio for the crop box.
resize(int $width = null[, int $height = null])
Specify the size (width and height) the image should be resized to.
Note: this method uses Intervention Image resize()
with the upsize and aspect ratio constraints.
autoOrientate()
Specify if the underlying image should be orientated. It will rotate the image to the orientation specified in Exif data, if any.
This can be mandatory in some cases for the cropper to work properly.
Note: PHP must be compiled in with --enable-exif
to use this method. Windows users must also have the mbstring extension enabled. See the Intervention Image documentation for more details.
quality(int $quality)
Specify the resulting quality of the transformed image.
This only applies to JPG format as PNG compression is lossless. The value must range from 0 (poor quality, small file) to 100 (best quality, big file).
Note: the quality will be passed to the Intervention Image save()
method.
convert(string $format)
Specify the desired output format.
Note: See Intervention Image encode()
for more details, including the list of allowed formats.