I am using CodeSleeve/stapler plugin in Laravel for image resizing.
I have noticed resized images are not progressive anymore.
As Stapler uses Imagine/Imagine Plugin for image handling, I am guessing I need to find solution in terms of imagine plugin rather then stapler.
Any help is appreciated.
My current configuration looks like this
$this->hasAttachedFile('profile_pic', [
'styles' => [
'large' => '800x360',
'medium' => '500x230',
'thumb' => '100x100'
]
]);