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 693 forks source link

How to remove edition numbers from upper left corner of NFT? #118

Open omniNerd opened 3 years ago

omniNerd commented 3 years ago

I've gotten everything to work perfectly. The only issue I can't solve is removing the edition number from the upper left hand corner of the NFT .png files. What is the simplest way to achieve this without altering the code and breaking it?

EvilShaggz commented 3 years ago

Just comment out the lines of code with //

omniNerd commented 3 years ago

Just comment out the lines of code with //

Which lines? I'm on v3

EvilShaggz commented 3 years ago

The section that starts wirh const signimage

Ponda1 commented 3 years ago

Comment out both instances of signImage in the code. You can search for it using ctrl+f in the index file

Ramirotorrese commented 3 years ago

I had the same issue. Did comment on the code but it is still showing

omniNerd commented 3 years ago

I had the same issue. Did comment on the code but it is still showing

I had to comment out lines 28, 33, 34, & 163 then it stopped throwing errors and stopped printing the edition number on the NFTs. Hope that helps.

omniNerd commented 3 years ago

The section that starts wirh const signimage

I had to comment out lines 28, 33, 34, & 163 then it stopped throwing errors and stopped printing the edition number on the NFTs. Thanks!

omniNerd commented 3 years ago

Comment out both instances of signImage in the code. You can search for it using ctrl+f in the index file

I had to comment out lines 28, 33, 34, & 163 then it stopped throwing errors and stopped printing the edition number on the NFTs. Thanks for the help

roxannegerber commented 3 years ago

I had the same issue. Did comment on the code but it is still showing

Make sure to save your changes before running index.js again - that worked for me.

saltea214 commented 2 years ago

Comment out both instances of signImage in the code. You can search for it using ctrl+f in the index file

I had to comment out lines 28, 33, 34, & 163 then it stopped throwing errors and stopped printing the edition number on the NFTs. Thanks for the help

This works for me. Thanks