Last active
October 18, 2018 01:40
-
-
Save nwillc/a19348131b15e600090e4ad77ad930c8 to your computer and use it in GitHub Desktop.
KSVG Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val svg = svg { | |
width = 200 | |
height = 200 | |
rect { | |
title { | |
body = "A Blue Rectangle" | |
} | |
x = 50 | |
y = 50 | |
width = 20 | |
height = 10 | |
fill = "blue" | |
} | |
circle { | |
cx = 100 | |
cy = 150 | |
r = 20 | |
fill = "red" | |
} | |
} | |
val sb = StringBuilder() | |
svg.render(sb) | |
System.out.println("<html><body>$sb</body></html>") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment