|
|
@ -1488,4 +1488,16 @@ tests['putImageData() 4'] = function(ctx){ |
|
|
|
} |
|
|
|
var data = ctx.getImageData(0,0,50,50); |
|
|
|
ctx.putImageData(data,30,30,10,10,30,30); |
|
|
|
}; |
|
|
|
|
|
|
|
tests['putImageData() 5'] = function(ctx){ |
|
|
|
for (i=0;i<6;i++){ |
|
|
|
for (j=0;j<6;j++){ |
|
|
|
ctx.fillStyle = 'rgb(' + Math.floor(255-42.5*i) + ',' + |
|
|
|
Math.floor(255-42.5*j) + ',0)'; |
|
|
|
ctx.fillRect(j*25,i*25,25,25); |
|
|
|
} |
|
|
|
} |
|
|
|
var data = ctx.getImageData(0,0,50,50); |
|
|
|
ctx.putImageData(data,60,60,30,10,50,30); |
|
|
|
}; |