public interface ImageSupport
| Modifier and Type | Method and Description |
|---|---|
logical |
getConvert3D()
Gets CONVERT-3D-COLORS attribute.
|
logical |
loadImage(character name)
Load widget(button or image) image from specified file name.
|
logical |
loadImage(character name,
int64 xOffset)
Load widget(button or image) image from specified file name.
|
logical |
loadImage(character name,
int64 xOffset,
int64 yOffset)
Load widget(button or image) image from specified file name.
|
logical |
loadImage(character name,
int64 xOffset,
int64 yOffset,
int64 width)
Load widget(button or image) image from specified file name.
|
logical |
loadImage(character name,
int64 xOffset,
int64 yOffset,
int64 width,
int64 height)
Load widget(button or image) image from specified file name.
|
boolean |
loadImage(java.lang.String name)
Load widget(button or image) image from specified file name.
|
boolean |
loadImage(java.lang.String name,
long xOffset)
Load widget(button or image) image from specified file name.
|
boolean |
loadImage(java.lang.String name,
long xOffset,
long yOffset)
Load widget(button or image) image from specified file name.
|
boolean |
loadImage(java.lang.String name,
long xOffset,
long yOffset,
long width)
Load widget(button or image) image from specified file name.
|
boolean |
loadImage(java.lang.String name,
long xOffset,
long yOffset,
long width,
long height)
Load widget(button or image) image from specified file name.
|
void |
setConvert3D(boolean flag)
Set CONVERT-3D-COLORS attribute.
|
void |
setConvert3D(logical flag)
Set CONVERT-3D-COLORS attribute.
|
boolean loadImage(java.lang.String name)
name - Image file name.true if operation was successful.boolean loadImage(java.lang.String name,
long xOffset)
name - Image file name.xOffset - An integer expression that specifies the pixel along the x-axis at which to begin
reading from the image file.true if operation was successful.boolean loadImage(java.lang.String name,
long xOffset,
long yOffset)
name - Image file name.xOffset - An integer expression that specifies the pixel along the x-axis at which to begin
reading from the image file.yOffset - Specifies the pixel along the y-axis at which to begin reading from the image file.true if operation was successful.boolean loadImage(java.lang.String name,
long xOffset,
long yOffset,
long width)
name - Image file name.xOffset - An integer expression that specifies the pixel along the x-axis at which to begin
reading from the image file.yOffset - Specifies the pixel along the y-axis at which to begin reading from the image file.width - Specifies the number of pixels along the x-axis to read from the image file.true if operation was successful.boolean loadImage(java.lang.String name,
long xOffset,
long yOffset,
long width,
long height)
name - Image file name.xOffset - An integer expression that specifies the pixel along the x-axis at which to begin
reading from the image file.yOffset - Specifies the pixel along the y-axis at which to begin reading from the image file.width - Specifies the number of pixels along the x-axis to read from the image file.height - Specifies the number of pixels along the y-axis to read from the image file.true if operation was successful.logical loadImage(character name)
name - Image file name.true if operation was successful.logical loadImage(character name, int64 xOffset)
name - Image file name.xOffset - An integer expression that specifies the pixel along the x-axis at which to begin
reading from the image file.true if operation was successful.logical loadImage(character name, int64 xOffset, int64 yOffset)
name - Image file name.xOffset - An integer expression that specifies the pixel along the x-axis at which to begin
reading from the image file.yOffset - Specifies the pixel along the y-axis at which to begin reading from the image file.true if operation was successful.logical loadImage(character name, int64 xOffset, int64 yOffset, int64 width)
name - Image file name.xOffset - An integer expression that specifies the pixel along the x-axis at which to begin
reading from the image file.yOffset - Specifies the pixel along the y-axis at which to begin reading from the image file.width - Specifies the number of pixels along the x-axis to read from the image file.true if operation was successful.logical loadImage(character name, int64 xOffset, int64 yOffset, int64 width, int64 height)
name - Image file name.xOffset - An integer expression that specifies the pixel along the x-axis at which to begin
reading from the image file.yOffset - Specifies the pixel along the y-axis at which to begin reading from the image file.width - Specifies the number of pixels along the x-axis to read from the image file.height - Specifies the number of pixels along the y-axis to read from the image file.true if operation was successful.logical getConvert3D()
void setConvert3D(boolean flag)
flag - New value for the option.void setConvert3D(logical flag)
flag - New value for the option.