org.apache.jmeter.save
Class SaveGraphicsService
java.lang.Object
org.apache.jmeter.save.SaveGraphicsService
public class SaveGraphicsService
- extends java.lang.Object
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.
Method Summary |
void |
saveJComponent(java.lang.String filename,
int type,
javax.swing.JComponent component)
Method will save the JComponent as an image. |
void |
savePNGWithBatik(java.lang.String filename,
java.awt.image.BufferedImage image)
Use Batik to save a PNG of the graph |
void |
saveTIFFWithBatik(java.lang.String filename,
java.awt.image.BufferedImage image)
Use Batik to save a TIFF file of the graph |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PNG
public static final int PNG
- See Also:
- Constant Field Values
TIFF
public static final int TIFF
- See Also:
- Constant Field Values
PNG_EXTENSION
public static final java.lang.String PNG_EXTENSION
- See Also:
- Constant Field Values
TIFF_EXTENSION
public static final java.lang.String TIFF_EXTENSION
- See Also:
- Constant Field Values
JPEG_EXTENSION
public static final java.lang.String JPEG_EXTENSION
- See Also:
- Constant Field Values
SaveGraphicsService
public SaveGraphicsService()
saveJComponent
public void saveJComponent(java.lang.String filename,
int type,
javax.swing.JComponent component)
- Method will save the JComponent as an image. The formats are PNG, and
TIFF.
- Parameters:
filename
- type
- component
-
savePNGWithBatik
public void savePNGWithBatik(java.lang.String filename,
java.awt.image.BufferedImage image)
- Use Batik to save a PNG of the graph
- Parameters:
filename
- image
-
saveTIFFWithBatik
public void saveTIFFWithBatik(java.lang.String filename,
java.awt.image.BufferedImage image)
- Use Batik to save a TIFF file of the graph
- Parameters:
filename
- image
-
Copyright © 1998-2010 Apache Software Foundation. All Rights Reserved.