提交 a036bdb3 编写于 作者: M Mugen87

ColladaExporter: Fix runtime error when processing ImageBitmap.

上级 dfb5c23c
......@@ -100,8 +100,8 @@ THREE.ColladaExporter.prototype = {
canvas = canvas || document.createElement( 'canvas' );
ctx = ctx || canvas.getContext( '2d' );
canvas.width = image.naturalWidth;
canvas.height = image.naturalHeight;
canvas.width = image.width;
canvas.height = image.height;
ctx.drawImage( image, 0, 0 );
......
......@@ -109,8 +109,8 @@ ColladaExporter.prototype = {
canvas = canvas || document.createElement( 'canvas' );
ctx = ctx || canvas.getContext( '2d' );
canvas.width = image.naturalWidth;
canvas.height = image.naturalHeight;
canvas.width = image.width;
canvas.height = image.height;
ctx.drawImage( image, 0, 0 );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册