Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a simple, domain-specific language to create vector graphics in multiple output formats (SVG, PDF...). In natural language one could create the image of a smiley with commands like this:

  1. draw a yellow filled circle with radius 10cm at the center (x=0,y=0)
  2. draw a black filled circle with radius 12mm at x=8cm, y=6cm
  3. draw a black filled circle with radius 12mm at x=-8cm, y=6cm
  4. draw an arc from -30 degree to -150 degree with radius 6cm at x=0, y=-2cm
  5. rotate the image by 10 degree

In a domain-specific drawing language this could be expressed as:

rotate 10°, {
  circle 0,0, r=10cm, fill=black
  eye(x,y) = circle x, y, 6cm, fill=black
  eye  8cm, 6cm
  eye -8cm, 6cm 
  arc -30° to -150° at y=-2cm
}

Other kinds of drawings such as grids or Koch snowflake could also be expressed with a domain specific drawing language while creating them by hand with a GUI is cumbersome.

Most important the language should be easy and allow for exchange of graphics. There are zillions of libraries for specific programming languages and professional drawing programs sure have their own scripting languages. For instance Cairo is a good low level API for drawing vector graphics. The best found so far:

  • PGF/TikZ in TeX with a very steep learning curve
  • OpenSCAD and RapCAD aim at 3D models only
  • Logo, known from Turtle graphics
  • SVG, enriched or produced by JavaScript or another programming language
  • ...?

I am not familiar with CAD, maybe there is more in this direction.

share|improve this question
You mentioned SVG as an output format - but doesn't it also fulfill your requirement? – e100 Oct 23 '12 at 15:50
SVG is too verbose and has limited support of variables, control and calculations, such as if, then, else, while, foreach, max, min, srqt, etc. – Jakob Oct 23 '12 at 17:43
1  
This seems like a programming language question: stackoverflow – DA. Oct 23 '12 at 21:30
@DA01: In short, don't want a programming language with image drawing capabilities, but an image drawing language with programming capabilities. – Jakob Oct 24 '12 at 6:33
1  
The problem of OpenSCAD is that you can only draw closed loops, or there is something I misunderstood. RapCAD (kind of a clone of OpenSCAD) can do open contours but has limited export capabilities. – Mildred Feb 4 at 12:37
show 2 more comments

migrated from graphicdesign.stackexchange.com Oct 24 '12 at 23:29

3 Answers

Arguably, SVG is a domain-specific language for drawing vector graphics. For example, here's a simple smiley face drawn in SVG, based on your example (but modified so that it actually looks like a smiley and not Mickey Mouse):

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
  "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="5cm" height="5cm" viewBox="0 0 22 22"
     version="1.1" xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink">

  <g transform="translate(11,11) rotate(190)">
    <circle r="10" stroke="black" stroke-width="1" fill="yellow" />
    <defs>
      <circle id="eye" r="2" fill="black" />
    </defs>
    <use xlink:href="#eye" x="+3.5" y="+3" />
    <use xlink:href="#eye" x="-3.5" y="+3" />
    <path d="M -5,-3 A 6,6 0 0 1 +5,-3" fill="none" stroke="black"
      stroke-width="2" stroke-linecap="round" />
  </g>
</svg>

Oh, and here's a PNG rendering of it:

Smiley face rendered from SVG code above

Now, I freely admit that SVG is probably not a perfect match to what you want, exactly whatever that may be. For one thing, being an XML-based language, it's a bit more verbose than your example. Also, the SVG path notation is really awful to read and not much better to write, so your imaginary syntax definitely wins there. (It is really flexible, though — you can do almost anything you want with it, as long as you don't mind doing it by mashing obscure single-letter commands together.) Still, I would say that it does satisfy your criteria.

share|improve this answer
Thanks for the detailed example! SVG notation is quite powerfull but also difficult to read and write. Above all calculation are limited (but one may use JavaScript, right?). – Jakob Oct 23 '12 at 17:57

Could you use PHP to generate SVG?

That would let you use SVG to generate static SVG, then automate or add in the program-y bits.

It seems like I'm definitely not the first to think of the idea.

Using code to create beautiful visualisations saves time, effort and allows you to focus on the idea rather than implementation details. Brian Suda explains how he wrote a PHP script to build an SVG graphic based on the .net magazine covers.

http://www.netmagazine.com/tutorials/create-svg-data-visualisation-php

SVGGraph is an object-oriented PHP library for creating simple PHP graphs, released as open source under the LGPL v3 license. Here are some examples of different types of graph supported by SVGGraph.

http://www.goat1000.com/svggraph.php

share|improve this answer
SVGGraph is not for arbitrary drawing but specific kinds for statistic diagrams (bar graph, pie graph...), but the general idea of producing SVG with a programming language is worth a try. – Jakob Oct 24 '12 at 12:22

Have you considered xaml? I know I've seen some xaml -> svg translators out there. If you're at all familiar with html xaml should be a snap.

share|improve this answer
can you provide some links, please? – Jakob Oct 24 '12 at 13:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.