HashLips / generative-art-opensource

Create generative art by using the canvas api and node js, feel free to contribute to this repo with new ideas.
MIT License
1.36k stars 695 forks source link

How to remove #Number displayed in the output image on top left corner? #67

Open ArshBansal opened 2 years ago

ArshBansal commented 2 years ago

image

tradermoore commented 2 years ago

You can comment out this piece of code in index.js to turn it off.

// adds a signature to the top left corner of the canvas const signImage = (_sig) => { ctx.fillStyle = "#000000"; ctx.font = "bold 30pt Courier"; ctx.textBaseline = "top"; ctx.textAlign = "left"; ctx.fillText(_sig, 40, 40); };

Ponda1 commented 2 years ago

You also have to comment out the

signImage('#${editionCount}');

In the index file