Package org.apache.jmeter.save
Class SaveGraphicsService
java.lang.Object
org.apache.jmeter.save.SaveGraphicsService
Class is responsible for taking a component and saving it as a JPEG, PNG or
TIFF. The class is very simple. Thanks to Batik and the developers who worked
so hard on it.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
saveJComponent
(String filename, int type, JComponent component) Method will save the JComponent as an image.void
savePNGWithBatik
(String filename, BufferedImage image) Use Batik to save a PNG of the graphvoid
saveTIFFWithBatik
(String filename, BufferedImage image) Use Batik to save a TIFF file of the graph
-
Field Details
-
PNG
public static final int PNG- See Also:
-
TIFF
public static final int TIFF- See Also:
-
PNG_EXTENSION
- See Also:
-
TIFF_EXTENSION
- See Also:
-
JPEG_EXTENSION
- See Also:
-
-
Constructor Details
-
SaveGraphicsService
public SaveGraphicsService()
-
-
Method Details
-
saveJComponent
Method will save the JComponent as an image. The formats are PNG, and TIFF. -
savePNGWithBatik
Use Batik to save a PNG of the graph- Parameters:
filename
- name of the file to store the image intoimage
- to be stored
-
saveTIFFWithBatik
Use Batik to save a TIFF file of the graph- Parameters:
filename
- name of the file to store the image intoimage
- to be stored
-