@aeolun/muhammara
Version:
Create, read and modify PDF files and streams. A drop in replacement for hummusjs PDF library
39 lines (31 loc) • 860 B
JavaScript
var fs = require("fs");
/*
PDFWStreamForFile is an implementation of a write stream using the supplied file path.
*/
function PDFWStreamForFile(inPath) {
this.ws = fs.createWriteStream(inPath);
this.position = 0;
this.path = inPath;
}
PDFWStreamForFile.prototype.write = function (inBytesArray) {
if (inBytesArray.length > 0) {
this.ws.write(new Buffer(inBytesArray));
this.position += inBytesArray.length;
return inBytesArray.length;
} else return 0;
};
PDFWStreamForFile.prototype.getCurrentPosition = function () {
return this.position;
};
PDFWStreamForFile.prototype.close = function (inCallback) {
if (this.ws) {
var self = this;
this.ws.end(function () {
self.ws = null;
if (inCallback) inCallback();
});
} else {
if (inCallback) inCallback();
}
};
module.exports = PDFWStreamForFile;