Package | Description |
---|---|
org.netbeans.api.visual.export |
This package contains the class necessary to export a
Scene to an
image file and get the coordinates from the exported image to create an HTML
image map |
Modifier and Type | Method and Description |
---|---|
static SceneExporter.ZoomType |
SceneExporter.ZoomType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SceneExporter.ZoomType[] |
SceneExporter.ZoomType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static BufferedImage |
SceneExporter.createImage(Scene scene,
File file,
SceneExporter.ImageType imageType,
SceneExporter.ZoomType zoomType,
boolean visibleAreaOnly,
boolean selectedOnly,
int quality,
int width,
int height)
Takes the Scene and writes an image file according to the constraints
defined by the caller.
|
static ArrayList<WidgetPolygonalCoordinates> |
SceneExporter.createImageMap(Scene scene,
File file,
SceneExporter.ImageType imageType,
SceneExporter.ZoomType zoomType,
boolean visibleAreaOnly,
boolean selectedOnly,
int quality,
int width,
int height,
int margin)
Designed to create an HTML image map from an exported image.
|