5

So i use this command to convert an svg file to png :

convert ss.svg ss.png

But the output is a bit weird : converted svg

As you can see, xaxis and yaxis labels are on the top. Please help me output this image properly.

Kurt Pfeifle
  • 86,724
  • 23
  • 248
  • 345
r2b2
  • 1,255
  • 5
  • 13
  • 34

2 Answers2

1

I've tried the same and it seems to work, try to use my ImageMagick version: enter image description here My settings:

  1. Windows 7 (x86)
  2. ImageMagick version

c:\workspace2\01nerva\bin\client>convert.exe -version Version: ImageMagick 6.7.5-4 2012-02-06 Q16 http://www.imagemagick.org Copyright: Copyright (C) 1999-2012 ImageMagick Studio LLC

Daniel Peñalba
  • 30,507
  • 32
  • 137
  • 219
0

This version works (on a Max OS X Lion) and provides the correct output:

/opt/local/bin/convert -version
  Version: ImageMagick 6.7.9-0 2012-08-17 Q16 http://www.imagemagick.org
  Copyright: Copyright (C) 1999-2012 ImageMagick Studio LLC
  Features:  OpenCL HDRI  

enter image description here

Kurt Pfeifle
  • 86,724
  • 23
  • 248
  • 345