Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DanElliottPalmer/gimp-palette-parser
Parses .gpl files
https://github.com/DanElliottPalmer/gimp-palette-parser
gimp gpl palette
Last synced: 4 months ago
JSON representation
Parses .gpl files
- Host: GitHub
- URL: https://github.com/DanElliottPalmer/gimp-palette-parser
- Owner: DanElliottPalmer
- License: mit
- Created: 2017-03-19T18:31:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-20T22:31:57.000Z (over 6 years ago)
- Last Synced: 2024-10-13T18:01:00.003Z (4 months ago)
- Topics: gimp, gpl, palette
- Language: JavaScript
- Size: 7.81 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# gimp palette parser
> Parses .gpl files
## Install
```
$ npm install --save gimp-palette-parser
```## Usage
```js
const parser = require('gimp-palette-parser');parser.parseFile('butts.gpl', (data) => {
console.log('loaded');
});
```