Javascript Uncaught Error: INDEX_SIZE_ERR: - Google Chrome - Canvas
        Posted  
        
            by Gart
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Gart
        
        
        
        Published on 2010-05-27T17:58:54Z
        Indexed on 
            2010/05/27
            18:01 UTC
        
        
        Read the original article
        Hit count: 537
        
I am drawing on a canvas with the following line:
ctx.drawImage(compositeImage, 0, 0, image.width, image.height, i, j, scaledCompositeImageWidth, scaledCompositeImageHeight);
This code has executed error free on Safari, Chrome, Firefox (and even IE using google's excanvas library). However, a recent update to Chrome now throws the following error:
Uncaught Error: INDEX_SIZE_ERR: DOM Exception 1
This code often positions part or all of the drawn image OFF the canvas, anyone got any idea what's going on here?
© Stack Overflow or respective owner