1.0.0 • Published 4 years ago

gpl2pdn v1.0.0

Weekly downloads
1
License
Unlicense
Repository
github
Last release
4 years ago

gpl2pdn

converts gimp palettes to paint.net palettes available as a cli and as a package

installation

npm install -g gpl2pdn for the cli and npm install gpl2pdn if you just want to include it in something for some reason

usage

cat palette.gpl | gpl2pdn > palette.txt or

const gpl2pdn = require('gpl2pdn')

const palette = `GIMP Palette
; whatever
255 255 255`
const output = palette.split('\n').map(gpl2pdn.parseLine)