Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-13T15:10:41.000Z (over 9 years ago)
- Last Synced: 2024-10-12T19:46:57.778Z (2 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){})