kony.image Namespace
The kony.image namespace provides the following API elements:
Constants
The kony.image namespace provides the following constant:
The following constants are used to specify the format of an Image widget's bitmap.
Constant | Description |
---|---|
kony.image.ENCODE_JPEG | The bitmap is in JPEG format. |
kony.image.ENCODE_PNG | The bitmap is in PNG format. |
Functions
The kony.image
namespace provides the following functions:
Creates an Image. This function has three overloads.
Syntax
kony.image.createImage(rawBytes);
kony.image.createImage(bundledImageFileName);
kony.image.createImage(Image);
Input Parameters
Any one of the following parameters can be passed in the function.
Parameter | Description |
---|---|
rawBytes | A RawBytes object containing the image's bitmap. |
bundledImageFileName | A string containing the file name of the bitmap to use for the image. |
Image | An Image widget containing the bitmap to use for the Image being created. |
Example
var imgBright = kony.image.createImage(this.imageBytes);
Return Values
This function returns an image object with its associated bitmap.
Remarks
If your app creates an Image from a RawBytes object, it should not make copies of the Image by creating it again from the initial RawBytes object. Creating multiple Image objects from the same RawBytes object results in undefined behavior. Rather than copying the RawBytes object into multiple Image objects, your app can make further copies by calling this function and passing it the Image object created in the first call to this function.
If your app creates an image from a bundled file, the file specified by the bundledImageFileName parameter can be in the GIF, an animated GIF, a JPEG, or PNG file format.
Platform Availability
- iOS
- Android
Creates an Image by taking a snapshot of a widget.
Syntax
kony.image.createImageFromSnapShot(widget);
Input Parameters
Parameter | Description |
---|---|
widget | The widget that this function takes a snapshot of. The snapshot is used for the bitmap of the Image created by the function. |
Example
var imgBlurBg = kony.image.createImageFromSnapShot(frmHome.widget1);
Return Values
This function returns an Image that contains a snapshot of the widget passed in through the widget parameter.
Remarks
When the image source is snapshot, the source is device screen, which is having twice the density of actual image, so the scale factor of image will be twice the image size because of the retina display of device.
Platform Availability
- iOS
- Android
Crops the bitmap in an Image object and returns it as an array of tiles.
Syntax
kony.image.cropImageInTiles(image, xTiles, yTiles);
Input Parameters
Parameter | Description |
---|---|
image | The Image object containing the bitmap to be cropped. |
xTiles | The number of equally-sized tiles that can be created in the x direction. |
yTiles | The number of equally-sized tiles that can be created in the x direction. |
Example
var img = kony.image.createImage(rawB); // Here rawB is the rawBytes of the image var imageArray = kony.image.cropImageInTiles(img, 10, 20);
Return Values
This function returns an array of Image widgets that were created from tiles of the bitmap in the Image object in the image parameter.
Platform Availability
- iOS
- Android
Crops portions of an Image widget's bitmap to a set of rectangles and returns an array of Image widgets containg the cropped bitmaps.
Syntax
kony.image.cropImageInTilesForRects(image, [ [x,y,w,h],[x1,y1,w1,h1],... ]);
Parameters
Parameter | Description |
---|---|
image | An Image widget containing the bitmap to be cropped. |
[ [x,y,w,h],[x1,y1,w1,h1],... ] | An array of rectangles specified as the (x,y) coordinates of the upper left corner and the height and width of the rectangle. Each rectangle in this array must be an array of four integers. |
Example
function getImageFromLocalStorage(imageName) { var img = kony.image.createImage(imageName); return img; } /*var clippingRects = [ [10, 12, 50, 100], [30, 45, 10, 200], [300, 100, 200, 10]];*/ function cropImageToTilesFromRects(clippingRects, localImage, FormToaddImage) { try { var img = getImageFromLocalStorage(localImage); var imageArray = kony.image.cropImageInTilesForRects(img, clippingRects); for (var j = 0; j < imageArray.length; j++) { var imgW = createImageWidget(imageArray[j]); FormToaddImage.add(imgW); } FormToaddImage.forceLayout(); } catch (err) { alert(err); } }
Return Values
This function returns an array of Image widgets that contain the bitmap information from the bitmap in the Image widget passed through the image parameter.
Remarks
This method iterates through an array of rectangles and uses each rectangle to obtain a cropped version of the bitmap associated with the Image widget in the image parameter. The original bitmap is not changed. It then creates an Image widget from each cropped bitmap and collects then into an array of Image widgets. It then returns the array of Image widgets.
Platform Availability
- iOS
- Android