1
0
cms11/app/ImageFilters/ForAI.php

17 lines
338 B
PHP

<?php
namespace App\ImageFilters;
use Intervention\Image\Interfaces\ImageInterface;
use Intervention\Image\Interfaces\ModifierInterface;
class ForAI implements ModifierInterface
{
public function apply(ImageInterface $image): ImageInterface
{
$image->scaleDown(width: 512, height: 512);
return $image;
}
}