I'm currently working with JavaFX 2.2 und Batik. I have an application with a pane on which you can drag multiple SVG pictures. This is all working out, and the svg code of each picture is stored in each object, so I can get that, too.
However now I want to take a "screenshot" of this pane and its current SVG-children and export it as an svg-file.
To me, there are two possibilities:
1) export it with the takeSnapshot() function as a .png-file and convert it to svg
2) or create a new svg-file from all the small svg-files with paying attention to the position of each svg-picture-object.
Is the latter possible? Or does anyone know, whether batik can do this png to svg conversion?
Thanks a lot for your help! :)