Skip to main content

All Questions

Tagged with
0 votes
1 answer
163 views

Canvas crispy text rendering

i am using electron(nodejs framework ) and i want to render crispy text for convert it into bitmap and show it on led brick. like led show software please help. my code is working but it's system ...
Puneet's user avatar
  • 1
0 votes
0 answers
65 views

Drawing on HTML canvas from multiple files using JS

So basically im working on a project using electron and canvas. I have a function that i call 60 times/second (using setInterval) and everytime that i want to draw some new thing i create a new file ...
Salame's user avatar
  • 21
0 votes
2 answers
63 views

What is the right choice between canvas and svg for circular daily planner

I am a pretty new programmer (wannabe programmer technically) and I would like to ask you guys a question about graphic tools in html5 for my project. I plan to make a planner app by using electron ...
Hugh Jung's user avatar
1 vote
1 answer
400 views

clearing canvas in html not refreshing without scroll in electron

my problem is simple, I've made a drawing board in html canvas. everything works ok, except when I want to cleat the whole canvas. I'm using this function context.clearRect(0, 0, context.canvas.width,...
Dany Y's user avatar
  • 6,963
1 vote
1 answer
772 views

Html canvas drawing slows with too many canvas elements

I am working on a slide show editor with a slide-preview strip. I am using electron and react. Each of my slides consists of a background canvas for images/text and a foreground canvas for drawing. ...
Kevin's user avatar
  • 13
0 votes
2 answers
1k views

Atom Electron: Render Canvas in Another Window

I have an Electron app with two BrowserWindows. The first manages multiple mediastreams which are rendered onto a canvas. When running the app in the browser I can access the canvas in a popup using ...
sqwk's user avatar
  • 2,689
3 votes
2 answers
3k views

Why do I need to make my electron window bigger than my canvas?

JS function createWindow () { // Create the browser window. mainWindow = new BrowserWindow({width: 450, height: 600, 'title' : 'Quantum Pilot', 'transparent' : true, 'web-preferences' : {'...
quantumpotato's user avatar