use correct scale for crest getImageData
This commit is contained in:
parent
f1396799f4
commit
4cd62ea50e
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ class CardCreator {
|
|||
var crestLayer0 = await loadImage(crestAry[2]);
|
||||
ctx.drawImage(crestLayer0, 0, 0, fcCrestScale, fcCrestScale);
|
||||
|
||||
var imgd = ctx.getImageData(0, 0, 135, 135),
|
||||
var imgd = ctx.getImageData(0, 0, fcCrestScale, fcCrestScale),
|
||||
pix = imgd.data,
|
||||
newColor = { r: 0, g: 0, b: 0, a: 0 };
|
||||
|
||||
|
|
Loading…
Reference in a new issue