The imagemagick convert command could not be executed

I’m using Kirby on a local dev instance with Laravel Herd and having trouble getting image conversion working with Imagemagick and was wondering how to go about fixing it.

The error is as follows:

The imagemagick convert command could not be executed: 'convert' -limit thread '1' '/REDACTED/2909d5ff5c-1723845645/001-2000x-q50.jpg' -auto-orient -thumbnail '977x1200!' -quality '50' '/REDACTED/2909d5ff5c-1723845645/001-2000x-q50.jpg'

exec is working, but it just can’t seem to find the convert command

The imagick extension is visible in phpinfo but I imagine this is trying to use convert via the commandline? (which is also installed via homebrew at /opt/homebrew/bin/convert)

Have you set the path to the binary in your config as described in the docs: thumbs | Kirby CMS

1 Like

Thank you as always, this was the issue!