sub _convert_image_command has a couple of bugs. There are a couple of lines that assign to $image_file the concatenation $basefile.$extension. However, the concatenation needs to be quoted; e.g. $image_file = “$basefile.$extension”. Otherwise it is a concatenation of two strings without the dot, and produces an error: e.g. when $basefile := abc, and $extension := svg, then the $image_file := “abcsvg", instead of the intended “abc.svg”.
This occurs on lines 1814 and 1820. Regards, wlharvey4
