1function HTMLImage(skImage) { 2 this._skImage = skImage; 3 // These are writable but have no effect, just like HTMLImageElement 4 this.width = skImage.width(); 5 this.height = skImage.height(); 6 this.naturalWidth = this.width; 7 this.naturalHeight = this.height; 8 this.getSkImage = function() { 9 return skImage; 10 } 11}