You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns a copy of anImage, suitable for modification.
Note: You should always copy an image before modifying it, otherwise you risk modifying the original.
Usage
var anImage = UI.makeImage ( "./images/something.png", UI.makeSize (32, 32) );
var bImage = UI.copyImage(anImage);
bImage.imageSize = UI.makeSize (24,24);
// anImage will be 32x32; bImage will be 24x24