DO NOT EDIT THE CONTENT OF THIS PAGE DIRECTLY (EXCEPT INSIDE THE DIV BELOW WITH ID=DESCRIPTION), UNLESS YOU KNOW WHAT YOU'RE DOING.
THE STRUCTURE OF THE CONTENT IS VITAL IN BEING ABLE TO AUTO UPDATE THE CONTENT THROUGH THE DOC GENERATOR.



Return Types
JSImage



Method Summary
JSImage
getImage(object)
Get a javascript image/resource object for the given file/bytearray/bean/applet/form_element.



Method Details

getImage

JSImage
getImage
(object)
Get a javascript image/resource object for the given file/bytearray/bean/applet/form_element.

Parameters

{Object} object - file/byte_array/bean/applet/form_element

Returns

JSImage

Sample

var image = plugins.images.getImage(byteArray);
var height = image.getHeight();
var contentType = image.getContentType();
var scaled_image = image.resize(30, 30);

var snapshot_image = plugins.images.getImage(forms.companyReports.elements.employeesChartBean);
var tempFile = plugins.file.createTempFile('bean_snapshot','.jpg')
plugins.file.writeFile(tempFile, snapshot_image.getData())
application.setStatusText('Wrote file: '+tempFile)