-
Notifications
You must be signed in to change notification settings - Fork 3
Description
Hello,
I wanted to tell you that your project gave me an idea, I created a jfxConverter project on sourceforge (https://sourceforge.net/projects/jfxconverter/) which allows to paint the content of a JavaFX tree in a Graphics2D context. Then by using Batik for example I'm able to convert to svg (or POI allows me to convert to PPT). The results I obtain are pretty good so far for my need.
I don't use the same approach as yours (I don't really convert to SVG, but use a Graphics2D context and use a library which allows me to convert to whatever format I want, providing it can work as a Graphics2D context).
Also I'm not sure if you used the CSS properties of the Nodes you converted (it seemed to me that it was not the case when looking at your code, by maybe I'm wrong). I discovered that by looking for these properties, and also going through the sub-Nodes (Skins), it seems that you don't need to support a lot of classes. For example, the text of a Labeled is in fact implemented by a Text Node.
Sorry for putting this comment here but I did not know how to contact you elsewhere.
Hervé