While I was converting the PageFlow mode from Java3D into JavaFX for our Java PDF Viewer, one of the fun issues that I came across is how to apply multiple effects to a Node.
There is only one method to set effects on a node, and using the method more than once will overwrite the previous effect each time. The key is that you need to chain effects together. This is done by setting the input of the effects like so:
ImageView imView = new ImageView();
PerspectiveTransform pTrans = new PerspectiveTransform(100, 110, 400, 160, 400, 940, 100, 1060);
Reflection ref = new Reflection();
pTrans.setInput(ref);
imView.setEffect(pTrans);
What this does is set the input of the PerspectiveTransform to be the result of applying the Reflection to the ImageView.
Be careful of the order in which you chain your effects because the order in which the effects are applied matters. It’s the difference between a nice outcome:
And a not so nice outcome!
I have written several articles on converting our Java3D usage into JavaFX and you can read the other articles here.
Are you a Developer working with PDF files?
Our developers guide contains a large number of technical posts to help you understand the PDF file Format.
Do you need to solve any of these problems?
Display PDF documents in a Web app |
Use PDF Forms in a web browser |
Convert PDF Documents to an image |
Work with PDF Documents in Java |
AWesome