java.lang.Object
org.jfree.chart3d.export.ExportUtils
Export utility methods.
- Since:
- 1.4
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic RenderingInfowriteAsJPEG(Drawable3D drawable, int w, int h, File file) Writes the current content to the specified file in JPEG format.static RenderingInfowriteAsPDF(Drawable3D drawable, int w, int h, File file) Writes aDrawable3Dto the specified file in PDF format.static RenderingInfowriteAsPNG(Drawable3D drawable, int w, int h, File file) Writes the current content to the specified file in PNG format.static RenderingInfowriteAsSVG(Drawable3D drawable, int w, int h, File file) Writes the current content to the specified file in SVG format.
-
Constructor Details
-
ExportUtils
public ExportUtils()
-
-
Method Details
-
writeAsSVG
Writes the current content to the specified file in SVG format. This will only work when the JFreeSVG library is found on the classpath. Reflection is used to ensure there is no compile-time dependency on JFreeSVG. Any exceptions that occur while writing the file are caught and wrapped in aRuntimeExceptionthat is then thrown.- Parameters:
drawable- the drawable (nullnot permitted).w- the chart width.h- the chart height.file- the output file (nullnot permitted).- Returns:
- The rendering info.
-
writeAsPDF
Writes aDrawable3Dto the specified file in PDF format. This will only work when the OrsonPDF library is found on the classpath. Reflection is used to ensure there is no compile-time dependency on OrsonPDF. Any exceptions that occur while writing the file are caught and wrapped in aRuntimeExceptionthat is then thrown.- Parameters:
drawable- the drawable ({code null} not permitted).w- the chart width.h- the chart height.file- the output file ({code null} not permitted).- Returns:
- The rendering info.
-
writeAsPNG
public static RenderingInfo writeAsPNG(Drawable3D drawable, int w, int h, File file) throws FileNotFoundException, IOException Writes the current content to the specified file in PNG format.- Parameters:
drawable- the drawable (nullnot permitted).w- the chart width.h- the chart height.file- the output file (nullnot permitted).- Returns:
- The rendering info.
- Throws:
FileNotFoundException- if the file is not found.IOException- if there is an I/O problem.
-
writeAsJPEG
public static RenderingInfo writeAsJPEG(Drawable3D drawable, int w, int h, File file) throws FileNotFoundException, IOException Writes the current content to the specified file in JPEG format.- Parameters:
drawable- the drawable (nullnot permitted).w- the chart width.h- the chart height.file- the output file (nullnot permitted).- Returns:
- The rendering info.
- Throws:
FileNotFoundException- if the file is not found.IOException- if there is an I/O problem.
-