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.
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
Use batik (http://xmlgraphics.apache.org/batik/). Render SVG into the image. Display it in SWT container. Portable. |
||||||||
|
