vote up 2 vote down star

Is there a good example of how to include an SVG canvas into a Java SWT project (particularly Holongate, though I would be interested in any other options)? Additionally, I would need to support this SVG canvas on Mac OS X, Windows and Linux clients, in case an implementation relies on native libraries. Thanks for any pointers.

flag

68% accept rate

3 Answers

vote up 0 vote down

Look at: eclipse GMF they has written a class witch renders through org.eclipse.gmf.runtime.draw2d.ui.render.awt.internal.graphics.Graphics2DToGraphicsAdaptor and Source code is in org.eclipse.gmf.runtime.draw2d.ui.render.awt.internal.svg. SWTImageTranscoder.

link|flag
vote up 0 vote down

We implemented this functionality by embedding a Batik Swing canvas into an SWT composite, see here. It worked fine on Windows, but we couldn't scroll the canvas on Mac OS X.
However, the vast majority of our users were on Windows, so we didn't spend too much time trying to fix the Mac OS X bug.

link|flag
vote up 3 vote down

Use batik (http://xmlgraphics.apache.org/batik/). Render SVG into the image. Display it in SWT container. Portable.

link|flag
I think Batik is Swing, not SWT. – Alex Reynolds May 4 at 18:12
"I think Batik is Swing"... No... Use batik to render JPEG (or whatever) and then display that in swt (or whatever)... the fun part is generating the region map to support interactivity. – corlettk May 17 at 8:39
This seems like a hack that doesn't really answer the question. – Alex Reynolds May 17 at 13:21
it is how it works, it is not a hack. 99% of batik is SVG rendering algorithm. How to embed it into particular framework - is technical details. – san May 21 at 14:20

Your Answer

Get an OpenID
or

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