Search found 3 matches
- 2012-08-28T03:55:53-07:00
- Forum: Users
- Topic: How can I draw an SVG line from some points?
- Replies: 6
- Views: 9502
Re: How can I draw an SVG line from some points?
Thanks for the info, I think that making the svg file with scripting actually saves me time instead of getting the points into imagemagick and then getting imagemagick to write the svg. Wrong tools for the job and all that sort of thing. Right, I'm off to fry an egg with a laser, some petrol and a ...
- 2012-08-27T11:58:20-07:00
- Forum: Users
- Topic: How can I draw an SVG line from some points?
- Replies: 6
- Views: 9502
Re: How can I draw an SVG line from some points?
I think that ImageMagick is not that good at writing vector graphics; it's mostly a raster graphics program. Oh Jeebuz....I wondered why all the tutorials seemed to love gif and png so much. Perhaps you should build the SVG file from scratch. Yup, thats what I've been trying to work out how to do ...
- 2012-08-27T07:05:41-07:00
- Forum: Users
- Topic: How can I draw an SVG line from some points?
- Replies: 6
- Views: 9502
How can I draw an SVG line from some points?
Hello, I would like to draw a line. Seriously, just a line. From some points. Without any fill. And get a nice svg at the end. I tried this: convert -size 350x350 canvas:skyblue -fill none -stroke blue \ -draw "path 'M 200,140 300,150 300,140 40,300'" \ test.svg But it fills it in black. What am I ...