Merge branch 'master' of github.com:openseadragon/openseadragon

This commit is contained in:
Ian Gilman 2016-10-10 17:09:28 -07:00
commit bcd093e3e6

View File

@ -423,6 +423,24 @@ $.Drawer.prototype = {
this.context.globalCompositeOperation = compositeOperation;
}
if (bounds) {
// Internet Explorer and Microsoft Edge throw IndexSizeError
// when you call context.drawImage with negative x or y
// or width or height greater than the canvas width or height respectively
if (bounds.x < 0) {
bounds.width += bounds.x;
bounds.x = 0;
}
if (bounds.width > this.canvas.width) {
bounds.width = this.canvas.width;
}
if (bounds.y < 0) {
bounds.height += bounds.y;
bounds.y = 0;
}
if (bounds.height > this.canvas.height) {
bounds.height = this.canvas.height;
}
this.context.drawImage(
this.sketchCanvas,
bounds.x,