Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webbestmaster/pixel-art-2-svg
pixel art to svg
https://github.com/webbestmaster/pixel-art-2-svg
Last synced: 28 days ago
JSON representation
pixel art to svg
- Host: GitHub
- URL: https://github.com/webbestmaster/pixel-art-2-svg
- Owner: webbestmaster
- License: mit
- Created: 2018-07-24T08:57:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-26T14:50:38.000Z (over 6 years ago)
- Last Synced: 2024-12-15T06:36:35.193Z (about 2 months ago)
- Language: JavaScript
- Size: 24.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## pixel-art-2-svg
### Install
```
npm i pixel-art-2-svg
```### How to use
```javascript
const pixelArtToSvg = require('pixel-art-2-svg');
const fileSystem = require('fs');pixelArtToSvg(__dirname + '/pixel-art.png')
.then(svgString => {
fileSystem.writeFile(
__dirname + '/pixel-art.svg',
svgString,
'utf-8',
() => console.log(__dirname + '/pixel-art.svg - done!')
);
});
```