mirror of
https://github.com/danbulant/pngjs
synced 2026-05-23 06:09:03 +00:00
24 lines
558 B
JavaScript
24 lines
558 B
JavaScript
"use strict";
|
|
|
|
let util = require("util");
|
|
let ChunkStream = require("./chunkstream");
|
|
let Filter = require("./filter-parse");
|
|
|
|
let FilterAsync = (module.exports = function (bitmapInfo) {
|
|
ChunkStream.call(this);
|
|
|
|
let buffers = [];
|
|
let that = this;
|
|
this._filter = new Filter(bitmapInfo, {
|
|
read: this.read.bind(this),
|
|
write: function (buffer) {
|
|
buffers.push(buffer);
|
|
},
|
|
complete: function () {
|
|
that.emit("complete", Buffer.concat(buffers));
|
|
},
|
|
});
|
|
|
|
this._filter.start();
|
|
});
|
|
util.inherits(FilterAsync, ChunkStream);
|