Home > Enterprise >  How to convert a feGaussianBlur in SVG to a GaussianBlur effect in JavaFX?
How to convert a feGaussianBlur in SVG to a GaussianBlur effect in JavaFX?

Time:11-09

I am developing a library (enter image description here

And this in JavaFX by using the same value for the radius:

enter image description here

CodePudding user response:

Try setting your radius to 2 * stdDeviation. That's what the relationship between the two generally is. Hopefully JavaFX also follows that rule.

  • Related