public class SVGUtils extends Object
SVGGraphics2D implementation.| Modifier and Type | Method and Description |
|---|---|
static String | escapeForXML(String source)Returns a new string where any special characters in the source string have been encoded. |
static void | writeToHTML(File file,
String title,
String svgElement)Writes an HTML file containing an SVG element. |
static void | writeToSVG(File file,
String svgElement)Writes a file containing the SVG element. |
static void | writeToSVG(File file,
String svgElement,
boolean zip)Writes a file containing the SVG element. |
public static String escapeForXML(String source)
source - the sourcepublic static void writeToHTML(File file, String title, String svgElement) throws IOException
file - the file.title - the titlesvgElement - the SVG element.IOException - if there is an I/O problem.public static void writeToSVG(File file, String svgElement) throws IOException
file - the file (null not permitted).svgElement - the SVG element (null not permitted).IOException - if there is an I/O problem.public static void writeToSVG(File file, String svgElement, boolean zip) throws IOException
file - the file (null not permitted).svgElement - the SVG element (null not permitted).zip - compress the output.IOException - if there is an I/O problem.