GetImageDataFromSelection

GetImageDataFromSelection() → { ImageData }

Returns the image data from the first of the selected drawings. If there are no drawings selected, the method returns a white rectangle.

Parameters:

This method doesn't have any parameters.

Returns:

Type
ImageData

Example

Copy code
window.Asc.plugin.executeMethod ("GetImageDataFromSelection", [], function (oResult) {
    oImage = document.createElement ("img");
    oImage.src = oResult.src;
    oImage.width = oResult.width;
    oImage.height = oResult.height;
    CreateImageEditor ();
    initializationDone = true;
    var imageHeight = null;
    oImage.height > 500 ? imageHeight = 500 : imageHeight = oImage.height;
    window.Asc.plugin.resizeWindow (undefined, undefined, 870, imageHeight + 300, 0, 0);
});