public class IltPortImageBaseRendererFactory extends IltAbstractImageBaseRendererFactory
Note: Image processing is carried out only when necessary. This means that when a new type is defined, no memory or CPU is used. The real processing and memory allocation are performed only when the first time the image is drawn.
You can easily create a new port connector with the following code:
IltPort.Type newType = new IltPort.Type(YOUR_NEW_TYPE_NAME); try { Image img = null; URL url = new URL("file", "", YOUR_IMAGE_FILE_NAME); img = getImage(url); if (img != null) { IltPortImageBaseRendererFactory factory = new IltPortImageBaseRendererFactory(img, YOUR_IMAGE_PARAMETERS ); IltSettings.SetValue("Port.Type.YOUR_NEW_TYPE_NAME.Renderer", factory); } } catch (Exception e) { e.printStackTrace(); }
Note: YOUR_NEW_TYPE_NAME
should be replaced with
any String you want.
YOUR_IMAGE_FILE_NAME
should be replaced with the appropriate String
to create a URL object for your image.
YOUR_IMAGE_PARAMETERS
is optional.
To obtain YOUR_IMAGE_PARAMETERS
, follow these steps:
samples/framework/imagecolortuner/
directory of JTGO.
The parameters are the same as for IltNetworkElement objects and ports.
IltPort.Type
,
IltSettings
,
IltPortBaseRenderer
Modifier and Type | Class and Description |
---|---|
protected static class |
IltPortImageBaseRendererFactory.BaseRenderer
This implementation of BaseRenderer can draw a modified version of the
sourceImage (given as parameter of the constructor of
the BaseRenderer factory) according to the baseStyle and
alarms of the object that is represented. |
Constructor and Description |
---|
IltPortImageBaseRendererFactory()
Creates a new
IltPortImageBaseRendererFactory . |
IltPortImageBaseRendererFactory(Image sourceImage)
Creates a new
IltImagePortBaseRendererFactory . |
IltPortImageBaseRendererFactory(Image sourceImage,
int brightThreshold,
int darkThreshold,
int normGray)
Creates a new
IltImagePortBaseRendererFactory . |
IltPortImageBaseRendererFactory(Image sourceImage,
int brightThreshold,
int darkThreshold,
int normGray,
boolean dottedBorderVisible)
Creates a new
IltImagePortBaseRendererFactory . |
IltPortImageBaseRendererFactory(String sourceImageName,
int brightThreshold,
int darkThreshold,
int normGray,
boolean dottedBorderVisible)
Creates a new
IltImagePortBaseRendererFactory . |
Modifier and Type | Method and Description |
---|---|
protected IltBaseRenderer |
createBaseRenderer()
This method can be overridden to create the
real base renderer that displays the image.
|
createValue, getBrightThreshold, getDarkThreshold, getGrayLevel, getImageFactory, getSourceImage, getSourceImageName, isDottedBorderVisible, isPolygonalBorder, setBrightThreshold, setDarkThreshold, setDottedBorderVisible, setGrayLevel, setPolygonalBorder, setSourceImage, setSourceImageName
public IltPortImageBaseRendererFactory(Image sourceImage, int brightThreshold, int darkThreshold, int normGray)
IltImagePortBaseRendererFactory
.sourceImage
- The image that will be processed to create the
different BaseStyle representations.brightThreshold
- The threshold (0..255) used for bright colors
when computing the NoTraffic representation.darkThreshold
- The threshold (0..255) used for dark colors when
computing the NoTraffic representation.normGray
- The gray level (0..255) used when computing the
alarmed CarryingTraffic representation.public IltPortImageBaseRendererFactory(Image sourceImage, int brightThreshold, int darkThreshold, int normGray, boolean dottedBorderVisible)
IltImagePortBaseRendererFactory
.sourceImage
- The image that will be processed to create
the different BaseStyle representations.brightThreshold
- The threshold (0..255) used for bright
colors when computing the NoTraffic
representation.darkThreshold
- The threshold (0..255) used for dark colors
when computing the NoTraffic representation.normGray
- The gray level (0..255) used when computing
the alarmed CarryingTraffic representation.dottedBorderVisible
- Indicates whether an additional dotted border
should be drawn around the base.IltBaseRenderer.isDottedBorderVisible()
public IltPortImageBaseRendererFactory(String sourceImageName, int brightThreshold, int darkThreshold, int normGray, boolean dottedBorderVisible)
IltImagePortBaseRendererFactory
.sourceImageName
- The image that will be processed to create
the different BaseStyle representations.brightThreshold
- The threshold (0..255) used for bright colors
when computing the NoTraffic representation.darkThreshold
- The threshold (0..255) used for dark colors
when computing the NoTraffic representation.normGray
- The gray level (0..255) used when computing
the alarmed CarryingTraffic representation.dottedBorderVisible
- Indicates whether an additional dotted border
should be drawn around the base.IltBaseRenderer.isDottedBorderVisible()
public IltPortImageBaseRendererFactory(Image sourceImage)
IltImagePortBaseRendererFactory
.
Using this constructor is equivalent to
IltImagePortBaseRendererFactory(sourceImage, 200, 50, 128, false)
.
sourceImage
- The image that will be processed to create
the different BaseStyle representations.public IltPortImageBaseRendererFactory()
IltPortImageBaseRendererFactory
.
The following default values are used:
200
50
128
false
The source image must be specified using method
IltAbstractImageBaseRendererFactory.setSourceImage(Image)
or IltAbstractImageBaseRendererFactory.setSourceImageName(String)
before using this renderer factory.
The renderer factory parameters shall be specified before using this renderer factory for the first time. Once the renderer factory is in use, modifying these parameters will have no effect on the object representation.
IltAbstractImageBaseRendererFactory.setSourceImage(Image)
,
IltAbstractImageBaseRendererFactory.setSourceImageName(String)
,
IltAbstractImageBaseRendererFactory.setBrightThreshold(int)
,
IltAbstractImageBaseRendererFactory.setDarkThreshold(int)
,
IltAbstractImageBaseRendererFactory.setGrayLevel(int)
,
IltAbstractImageBaseRendererFactory.setDottedBorderVisible(boolean)
protected IltBaseRenderer createBaseRenderer()
IltAbstractImageBaseRendererFactory
This method is called by IltAbstractImageBaseRendererFactory.createValue()
.
createBaseRenderer
in class IltAbstractImageBaseRendererFactory
© Copyright 2024 Rogue Wave Software, Inc., a Perforce company.. All Rights Reserved.