mirror of
https://github.com/danbulant/pngjs
synced 2026-05-26 21:31:56 +00:00
10 lines
No EOL
238 B
JavaScript
10 lines
No EOL
238 B
JavaScript
var PNG = require("../lib/png").PNG;
|
|
|
|
(new PNG({width:1,height:1})).pack()
|
|
.on('data', function(data) {
|
|
console.log('data', data);
|
|
})
|
|
.on('end', function() {
|
|
console.log('bitmap:', this.data);
|
|
console.log('end !');
|
|
}); |