Hi,
referencing this I have the following config:
return [
'thumbs' => [
'driver' => 'im',
'srcsets' => [
'hero' => [
'1440w' => [
'width' => 1440,
'quality' => 80,
'format' => 'png',
],
'1920w' => [
'width' => 1920,
'quality' => 80,
'format' => 'webp',
],
],
],
],
];
And use it via $image->srcset('hero')
No matter what I put as the format value, the image is resized properly keeps its original file format.
what am I missing? Is conversion of formats not supported?
Thanks