forked from mooz/node-pdf-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
156 lines (141 loc) · 4.42 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
// node-pdf
var Promise = require("es6-promise").Promise;
var path = require("path");
var fs = require("fs");
var util = require("util");
var exec = require("child_process").exec;
function PDFImage(pdfFilePath, options) {
if (!options) options = {};
this.pdfFilePath = pdfFilePath;
this.pdfFileBaseName = path.basename(pdfFilePath, ".pdf");
this.setConvertOptions(options.convertOptions);
this.setConvertExtension(options.convertExtension);
this.useGM = options.graphicsMagick || false;
// TODO: make out dir customizable
this.outputDirectory = path.dirname(pdfFilePath);
}
PDFImage.prototype = {
constructGetInfoCommand: function () {
return util.format(
"pdfinfo '%s'",
this.pdfFilePath
);
},
parseGetInfoCommandOutput: function (output) {
var info = {};
output.split("\n").forEach(function (line) {
if (line.match(/^(.*?):[ \t]*(.*)$/)) {
info[RegExp.$1] = RegExp.$2;
}
});
return info;
},
getInfo: function () {
var self = this;
var getInfoCommand = this.constructGetInfoCommand();
var promise = new Promise(function (resolve, reject) {
exec(getInfoCommand, function (err, stdout, stderr) {
if (err) {
return reject({
message: "Failed to get PDF'S information",
error: err,
stdout: stdout,
stderr: stderr
});
}
return resolve(self.parseGetInfoCommandOutput(stdout));
});
});
return promise;
},
numberOfPages: function () {
return this.getInfo().then(function (info) {
return info["Pages"];
});
},
getOutputImagePathForPage: function (pageNumber) {
return path.join(
this.outputDirectory,
this.pdfFileBaseName + "-" + pageNumber + "." + this.convertExtension
);
},
setConvertOptions: function (convertOptions) {
this.convertOptions = convertOptions || {};
},
setConvertExtension: function (convertExtension) {
this.convertExtension = convertExtension || "png";
},
constructConvertCommandForPage: function (pageNumber) {
var pdfFilePath = this.pdfFilePath;
var outputImagePath = this.getOutputImagePathForPage(pageNumber);
var convertOptionsString = this.constructConvertOptions();
return util.format(
"%s %s'%s[%d]' '%s'",
this.useGM ? "gm convert" : "convert",
convertOptionsString ? convertOptionsString + " " : "",
pdfFilePath, pageNumber, outputImagePath
);
},
constructConvertOptions: function () {
return Object.keys(this.convertOptions).sort().map(function (optionName) {
if (this.convertOptions[optionName] !== null) {
return optionName + " " + this.convertOptions[optionName];
} else {
return optionName;
}
}, this).join(" ");
},
convertPage: function (pageNumber) {
var pdfFilePath = this.pdfFilePath;
var outputImagePath = this.getOutputImagePathForPage(pageNumber);
var convertCommand = this.constructConvertCommandForPage(pageNumber);
var promise = new Promise(function (resolve, reject) {
function convertPageToImage() {
exec(convertCommand, function (err, stdout, stderr) {
if (err) {
return reject({
message: "Failed to convert page to image",
error: err,
stdout: stdout,
stderr: stderr
});
}
return resolve(outputImagePath);
});
}
fs.stat(outputImagePath, function (err, imageFileStat) {
var imageNotExists = err && err.code === "ENOENT";
if (!imageNotExists && err) {
return reject({
message: "Failed to stat image file",
error: err
});
}
// convert when (1) image doesn't exits or (2) image exists
// but its timestamp is older than pdf's one
if (imageNotExists) {
// (1)
convertPageToImage();
return;
}
// image exist. check timestamp.
fs.stat(pdfFilePath, function (err, pdfFileStat) {
if (err) {
return reject({
message: "Failed to stat PDF file",
error: err
});
}
if (imageFileStat.mtime < pdfFileStat.mtime) {
// (2)
convertPageToImage();
return;
}
return resolve(outputImagePath);
});
});
});
return promise;
}
};
exports.PDFImage = PDFImage;