BBjToolButton::getImageWidth

Description

In BBj 15.0 and higher, this BBjToolButton method returns the width in pixels of the button image.

Syntax

Return Value

Method

int

getImageWidth()

Parameters

None.

Return Value

If the image size has been set using setImageSize, that value is returned. If no image size has been set, the inherent image width is returned, or 0 if the menu item has no image.

Example

rem ' BBjToolButton::getImageWidth

image$ = "http://basis.cloud/sites/basis.com/files/amity_island_logo.jpg"
print "Image: ",image$
sysgui = unt
open (sysgui)"X0"
sysgui! = bbjapi().getSysGui()
imagemanager! = sysgui!.getImageManager()
image! = javax.imageio.ImageIO.read(new java.net.URL(image$))
os! = new java.io.ByteArrayOutputStream()
javax.imageio.ImageIO.write(image!,"jpg",os!)
bytes! = os!.toByteArray()
image! = imagemanager!.loadImageFromBytes(bytes!)
print "Image width:",image!.getWidth()
print "Image height:",image!.getHeight()
window! = sysgui!.addWindow(100,100,250,225,"setImageSize",$00090003$)
window!.setCallback(window!.ON_CLOSE,"eoj")
unscaled! = window!.addToolButton(101,25,25,200,100,"",$$)
unscaled!.setImage(image!)
scaled! = window!.addToolButton(102,25,150,200,50,"Scaled Image",$$)
scaled!.setImage(image!)
print ""
print "Default image size:"
print "getImageWidth:",scaled!.getImageWidth()
print "getImageHeight:",scaled!.getImageHeight()
scaled!.setImageSize(image!.getWidth()/2,image!.getHeight()/2)
print ""
print "Scaled image size:"
print "getImageWidth:",scaled!.getImageWidth()
print "getImageHeight:",scaled!.getImageHeight()

process_events

eoj:
release

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.