I am currently working with webworker and canvas for the first time and have a question about it.
I have a webpage that needs to draw multiple elements on a canvas. When the canvas is full I want to create a new canvas and continue drawing on it. I have outsourced the logic for drawing to a webworker that gets a list of elements and the current canvas (OffscreenCanvas). I would like to use a promise to send a message to the frontend in the webworker to create the new canvas and get it back as a response. Is there an elegant solution for this? I seem to have hit a block in my thinking.
I think i found a solution: