mirror of
https://github.com/danbulant/pngjs
synced 2026-05-22 05:38:56 +00:00
7 lines
No EOL
189 B
JavaScript
7 lines
No EOL
189 B
JavaScript
var PNG = require("../lib/png").PNG;
|
|
|
|
(new PNG({width:1,height:1})).pack()
|
|
.on("end", function() {
|
|
console.log(this.data);
|
|
console.log("end !"); // never called
|
|
}) |