diff options
author | Keiron Liddle <keiron@apache.org> | 2000-07-14 07:06:46 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2000-07-14 07:06:46 +0000 |
commit | 9b17c39acb66a02b8553209bc035e759413034f3 (patch) | |
tree | 571ed40e068905bce43bdb272ce4e88832fea480 /docs/examples/svg/test/junk.svg | |
parent | 8b6b236b361fe4aa7f906b676f65ae6ead137d8a (diff) | |
download | xmlgraphics-fop-9b17c39acb66a02b8553209bc035e759413034f3.tar.gz xmlgraphics-fop-9b17c39acb66a02b8553209bc035e759413034f3.zip |
svg documentation
with a makedoc and build to generate the pdf docs
with a bunch of svg tests
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193500 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/examples/svg/test/junk.svg')
-rw-r--r-- | docs/examples/svg/test/junk.svg | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/examples/svg/test/junk.svg b/docs/examples/svg/test/junk.svg new file mode 100644 index 000000000..449373dec --- /dev/null +++ b/docs/examples/svg/test/junk.svg @@ -0,0 +1,11 @@ +<svg:svg width="400" height="200" + xmlns:svg="http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd"> + <svg:g transform="matrix(1 0.3 0.2 1.3 30 0)" style="stroke: black; stroke-width: 1; fill: none"> + <svg:rect x="20" y="20" width="100" height="100"/> + <svg:line x1="20" y1="20" x2="120" y2="120"/> + <svg:line x1="120" y1="20" x2="20" y2="120"/> + <svg:circle cx="70" cy="70" r="50" style="fill:blue; stroke:red; stroke-width: 3"/> + <svg:path d="m 70 20 l 40 50 -30 20 z" style="stroke: green; stroke-width: 5"/> + <svg:text x="20" y="150">Hello SVG!</svg:text> + </svg:g> +</svg:svg> |