https://github.com/sdumetz/node-xpm
read xpm file for use in https://github.com/sidorares/node-x11
https://github.com/sdumetz/node-xpm
Last synced: 4 months ago
JSON representation
read xpm file for use in https://github.com/sidorares/node-x11
- Host: GitHub
- URL: https://github.com/sdumetz/node-xpm
- Owner: sdumetz
- License: mit
- Created: 2015-08-11T08:35:46.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-13T15:10:41.000Z (almost 10 years ago)
- Last Synced: 2025-02-22T09:03:26.789Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 145 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-xpm
read xpm file for use in [node-x11](https://github.com/sidorares/node-x11)##Usage
Sync version :
var PixmapFromFile = require("xpixmap");
var pixmap = new PixmapFromFile("file_path");Async version :
var PixmapFromFile = require("xpixmap");
var map = new PixmapFromFile();
map.open("file_path",function(err,pixmap){})