Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
identify -verbose test.tif shows the path. This includes "V" commands which should be followed by one or more y-coordinates but seems to be followed by (x,y) pairs. It also includes three "Y" commands. I can't find these in the SVG v1.1 specification. (http://www.w3.org/TR/SVG/paths.html)
So this looks like bad SVG, which different software will treat differently.
In Gimp, you can edit the path at the bad points (towards top-left and bottom-right). With some fiddling, you can remove the bad "V" and "Y" commands. I don't know of an automated tool to do this.
rem From image file %1,
rem extract SVG and convert "V" and "Y" commands into "L".
%IM%identify -format %%[8BIM:1999,2998:#1] %1 > clipBad.svg
del clipGood.svg
for /F "tokens=1,*" %%A in (clipBad.svg) do (
set COMMAND=%%A
if "!COMMAND!"=="Y" set COMMAND=L
if "!COMMAND!"=="V" set COMMAND=L
echo !COMMAND! %%B>>clipGood.svg
)