PHP code example of waterdhavian / nova-advanced-image
1. Go to this page and download the library: Download waterdhavian/nova-advanced-image 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/ */
waterdhavian / nova-advanced-image example snippets
namespace App\Nova;
// ...
use Waterdhavian\AdvancedImage\AdvancedImage;
class Post extends Resource
{
// ...
public function fields(Request $request)
{
return [
// ...
// Simple image upload
AdvancedImage::make('photo'),
// Show a cropbox with a free ratio
AdvancedImage::make('photo')->croppable(),
// 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),
// Resize the image to a max height
AdvancedImage::make('photo')->resize(null, 1080),
// Show a cropbox and resize the image
AdvancedImage::make('photo')->croppable()->resize(400, 300),
// Override the image processing driver for this field only
AdvancedImage::make('photo')->driver('imagick')->croppable(),
// Store to AWS S3
AdvancedImage::make('photo')->disk('s3'),
// Specify a custom subdirectory
AdvancedImage::make('photo')->disk('s3')->path('image'),
];
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.