| Package | Description |
|---|---|
| org.jfree.svg | Core classes for generating SVG (Scalable Vector Graphics) output from Java2D
graphics operations. |
| Modifier and Type | Method and Description |
|---|---|
SVGUnits | SVGGraphics2D.getFontSizeUnits()Returns the font size units. |
SVGUnits | SVGGraphics2D.getUnits()Returns the units for the width and height of the SVG element's viewport, as specified in the
constructor. |
static SVGUnits | SVGUnits.valueOf(String name)Returns the enum constant of this type with the specified name. |
static SVGUnits[] | SVGUnits.values()Returns an array containing the constants of this enum type, in
the order they are declared. |
| Modifier and Type | Method and Description |
|---|---|
void | SVGGraphics2D.setFontSizeUnits(SVGUnits fontSizeUnits)Sets the font size units. |
| Constructor and Description |
|---|
SVGGraphics2D(int width,
int height,
SVGUnits units)Creates a new instance with the specified width and height in the given units. |
SVGGraphics2D(int width,
int height,
SVGUnits units,
StringBuilder sb)Creates a new instance with the specified width and height that will populate the supplied
StringBuilder instance. |