%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
'use strict'; var util = require('util'); var Stream = require('stream'); var constants = require('./constants'); var Packer = require('./packer'); var PackerAsync = module.exports = function(opt) { Stream.call(this); var options = opt || {}; this._packer = new Packer(options); this._deflate = this._packer.createDeflate(); this.readable = true; }; util.inherits(PackerAsync, Stream); PackerAsync.prototype.pack = function(data, width, height, gamma) { // Signature this.emit('data', new Buffer(constants.PNG_SIGNATURE)); this.emit('data', this._packer.packIHDR(width, height)); if (gamma) { this.emit('data', this._packer.packGAMA(gamma)); } var filteredData = this._packer.filterData(data, width, height); // compress it this._deflate.on('error', this.emit.bind(this, 'error')); this._deflate.on('data', function(compressedData) { this.emit('data', this._packer.packIDAT(compressedData)); }.bind(this)); this._deflate.on('end', function() { this.emit('data', this._packer.packIEND()); this.emit('end'); }.bind(this)); this._deflate.end(filteredData); };