1
0
cms11/app/ImageFilters/Article.php

17 lines
340 B
PHP
Raw Normal View History

<?php
namespace App\ImageFilters;
use Intervention\Image\Interfaces\ImageInterface;
use Intervention\Image\Interfaces\ModifierInterface;
class Article implements ModifierInterface
{
public function apply(ImageInterface $image): ImageInterface
{
2024-04-22 22:20:05 +02:00
$image->scaleDown(width: 864, height: 600);
return $image;
}
}