├── .gitignore ├── libs ├── NftMarkerCreator_wasm.wasm └── NftMarkerCreator_wasm.js ├── docs ├── wasm │ └── NftMarkerCreator_wasm.wasm ├── icons │ ├── star2.svg │ └── star.svg ├── index.html ├── style.css ├── index.js └── exif.js ├── package.json ├── README.md └── app.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | input/* 3 | output/* 4 | package-lock.json 5 | .vscode/* 6 | 7 | -------------------------------------------------------------------------------- /libs/NftMarkerCreator_wasm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AR-js-org/NFT-Marker-Creator/HEAD/libs/NftMarkerCreator_wasm.wasm -------------------------------------------------------------------------------- /docs/wasm/NftMarkerCreator_wasm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AR-js-org/NFT-Marker-Creator/HEAD/docs/wasm/NftMarkerCreator_wasm.wasm -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nodegenerator", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "app.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "MIT", 11 | "dependencies": { 12 | "glob": "^7.1.6", 13 | "inkjet": "^2.1.2", 14 | "jpeg-js": "^0.3.6", 15 | "pngjs": "^3.4.0", 16 | "readline-sync": "^1.4.10" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /docs/icons/star2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 43 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |NFT Marker Creator
13 | 14 | 15 | 16 |Confidence:
29 |Warning:
36 | Images with width and/or height above 1000px might take 20min+ to generate.
37 | For a more efficient Marker generator, please use the Node script version:
38 | https://github.com/Carnaux/NFT-Marker-Creator
39 |
No "Number of Channels" found!
47 |Inform the number of channels(nc):
(black and white images have NC=1, colored images have NC=3)