Convert TIFF to JPEG?

I was wondering if there is a way to get uploaded tiff files to generate JPEGs? I’ve set the image driver to ‘imagick’ and have ensured it is functional/active in php, but am unable to get tiff files to generate thumbnails in the panel and in templates (with resize etc).

Because

	public static array $resizableTypes = [
		'jpg',
		'jpeg',
		'gif',
		'png',
		'webp'
	];

(/kirby/src/Image/Image.php)
You could test if it works if you redefine this in a plugin.

Thank you, this did indeed allow the production of resized src urls but did not convert anything unfortunately.