PHP code example of brand3000 / nova-advanced-image-field
1. Go to this page and download the library: Download brand3000/nova-advanced-image-field library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
brand3000 / nova-advanced-image-field example snippets
// Show a cropbox with a fixed ratio
AdvancedImage::make('Photo')->croppable(16/9),
// Resize the image to a max width
AdvancedImage::make('Photo')->resize(1920),
// Override the image processing driver for this field only
AdvancedImage::make('Photo')->driver('imagick'),