Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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){

})