I’m following @texnixe‘s cookbook to create Preview images for PDFs and am wondering if this is effected by the old ImageMagick (im) driver being been deprecated?
As stated in the docs:
From Kirby v5.1.0, the driver imagick should be used instead of im, so i’ve updated my thumbs driver in the config.php file like so:
'thumbs' => [
'driver' => 'imagick',
'quality' => 80,
'threads' => 1,
'interlace' => true, // JPEG only
],
As I understand it, the bin also no longer needs to be specified in thumbs part above, however, does anything in the plugin files also need to be changed in order to match the new imagick driver?
thanks!