1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 'use strict';
- /*!
- * Canvas - PNGStream
- * Copyright (c) 2010 LearnBoost <tj@learnboost.com>
- * MIT Licensed
- */
- /**
- * Module dependencies.
- */
- var Stream = require('stream').Stream;
- /**
- * Initialize a `PNGStream` with the given `canvas`.
- *
- * "data" events are emitted with `Buffer` chunks, once complete the
- * "end" event is emitted. The following example will stream to a file
- * named "./my.png".
- *
- * var out = fs.createWriteStream(__dirname + '/my.png')
- * , stream = canvas.createPNGStream();
- *
- * stream.pipe(out);
- *
- * @param {Canvas} canvas
- * @param {Boolean} sync
- * @api public
- */
- var PNGStream = module.exports = function PNGStream(canvas, sync) {
- var self = this
- , method = sync
- ? 'streamPNGSync'
- : 'streamPNG';
- this.sync = sync;
- this.canvas = canvas;
- this.readable = true;
- // TODO: implement async
- if ('streamPNG' == method) method = 'streamPNGSync';
- process.nextTick(function(){
- canvas[method](function(err, chunk, len){
- if (err) {
- self.emit('error', err);
- self.readable = false;
- } else if (len) {
- self.emit('data', chunk, len);
- } else {
- self.emit('end');
- self.readable = false;
- }
- });
- });
- };
- /**
- * Inherit from `EventEmitter`.
- */
- PNGStream.prototype.__proto__ = Stream.prototype;
|