Version 2.1.4, 12 February 2023.
FXGraphics2D is an implementation of Java's Graphics2D
API that targets the JavaFX Canvas
. It makes it possible to reuse existing Java2D code in a JavaFX application. The following example is generated by JFreeChart-FX:
The code has been developed for the use of Orson Charts (https://github.com/jfree/orson-charts/) and JFreeChart (http://www.jfree.org/jfreechart). Numerous demos can be found in the JFree-FXDemos project page at GitHub.
You can also read about FXGraphics2D in this Java Magazine article:
Temporary: link above is broken, please use this in the meantime:
FXGraphics2D requires JDK 11 or later and is licensed under the terms of a (three clause) BSD-style license.
To include FXGraphics2D
in your own project, add the following Maven dependency:
<dependency>
<groupId>org.jfree</groupId>
<artifactId>org.jfree.fxgraphics2d</artifactId>
<version>2.1.4</version>
</dependency>
You can build FXGraphics2D
from sources using Maven:
mvn clean install
FXGraphics2D is being tested using Graphics2D Tester and produces the output shown below. There are several areas that still need work:
- the compositing rules in
AlphaComposite
cannot be mapped 100% to JavaFX equivalents - font metrics are approximated
- image drawing with clipping shows a strange greying out effect
If you have feedback about the FXGraphics2D
library, please use the discussion area.
FXGraphics2D
is licensed under a BSD-style license:
Copyright (c) 2014-present, David Gilbert.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- fixed clip handling with child Graphics2D.create() (PR #11 by Laurent Bourgès)
- fix bug in drawArc()/fillArc()
- set JavaFX dependency to version 19
- set JavaFX dependency to version 17
- apply code clean-up suggested by IntelliJ
- set winding rule for
Path2D
instances; - set cycle method on gradient paints;
- fix focus distance on
RadialGradientPaint
.
- fix handling for
null
arguments indrawImage()
methods; - update JavaFX dependency to version 16;
- update JUnit test dependency to 5.7.2.
- update JavaFX dependencies to version 15;
- migrated tests to JUnit 5.
- converted to a module (
org.jfree.fxgraphics2d
); - now requires JDK 11 or later.
- fixed bug #8 where
draw(Shape)
alters the shape state forRenderingHints.VALUE_STROKE_PURE
; - added automatic module name (
org.jfree.fxgraphics2d
).
- fixed bug #6 where color, stroke and font attributes are changed after calling
setClip()
twice.
- added support for JDK9 by removing the use of some non-public classes;
- simplified the project set-up by removing Ant as a build option, and removing the demos (these will be provided in a separate Git project https://github.com/jfree/jfree-fxdemos).
- add rendering hint to provide option for measuring fonts via JavaFX API;
- fix exception in
drawImage()
method withnull
transform; - updated JFreeSVG to version 3.2 (affects demo only).
- improve handling of
setComposite()
for alpha values; - fixed bug in rotate method, incorrect conversion to degrees.
- fixed bug in
drawImage()
method; - add 'maven' directory with a pom that can be copied over to load the project in NetBeans;
- updated Ant script to copy over
pom.xml
to distribution.
- implemented
getGraphicsDevice()
method; - add support for dashed lines;
- in
setPaint()
andsetStroke()
, don't update anything if the value is the same; - various performance fixes;
- fixed bug in
drawImage()
method; - updated demos.
Note that version 1.2.1 corrects a Maven dependency problem that sneaked into the 1.2 release.
- fix clipping so that combined plots in JFreeChart work correctly;
- observe
KEY_STROKE_CONTROL
rendering hint for lines and rectangles (used to sharpen gridlines and borders in JFreeChart); - adjust
fontRenderContext
so that glyph positioning is more precise forTextLayout
; - add
clearRect()
call in the JFreeChart demo; - add Maven support (pom.xml).
- initial public release.