From 6c95c9ecbfd54c7f601f6d72592e43520564e89b Mon Sep 17 00:00:00 2001 From: starburst997 Date: Thu, 4 Dec 2014 16:22:53 -0500 Subject: [PATCH] Fix HTML5 CopyPixels Using copyPixels were resulting in Uncaught TypeError: Cannot read property 'clearRect' of null ImageCanvasUtil.hx:102 Adding this line fix the problem --- lime/graphics/Image.hx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lime/graphics/Image.hx b/lime/graphics/Image.hx index 2440ecc2b..06d80c307 100644 --- a/lime/graphics/Image.hx +++ b/lime/graphics/Image.hx @@ -252,6 +252,7 @@ class Image { case CANVAS: + ImageCanvasUtil.convertToCanvas (this); ImageCanvasUtil.copyPixels (this, sourceImage, sourceRect, destPoint, alphaImage, alphaPoint, mergeAlpha); case DATA: @@ -1196,4 +1197,4 @@ enum ImageChannel { BLUE; ALPHA; -} \ No newline at end of file +}