Fix: image creator service flowName and agentName fixes

This commit is contained in:
Lorenzo Iovino 2019-11-05 10:44:30 +01:00
parent 13d9a24d63
commit ae093c0f26
3 changed files with 20 additions and 65 deletions

View file

@ -39,7 +39,7 @@ export class ImageCreatorService {
});
//todo da cambiare le dimensioni e renderle dinamiche
const canvas = createCanvas(150, 150);
const canvas = createCanvas(800, 600);
const ctx = canvas.getContext('2d');
this.printHTMLElements(htmlElements, ctx);
this.printMouseClick(mouseClicks, ctx);
@ -174,7 +174,6 @@ export class ImageCreatorService {
}
}
}
})
})
}
}