summaryrefslogtreecommitdiffstats
path: root/lib/utils/images.js
diff options
context:
space:
mode:
authorSamy Pesse <samypesse@gmail.com>2016-02-11 21:44:38 +0100
committerSamy Pesse <samypesse@gmail.com>2016-02-11 21:44:38 +0100
commit669f3b39849890c48171d807225cd6eaa3c9086b (patch)
treebc07fefc4e13ac8f737174166ac1d19512379298 /lib/utils/images.js
parente7eed2abbe91fa44bd071819123bd9ea04d1702a (diff)
downloadgitbook-669f3b39849890c48171d807225cd6eaa3c9086b.zip
gitbook-669f3b39849890c48171d807225cd6eaa3c9086b.tar.gz
gitbook-669f3b39849890c48171d807225cd6eaa3c9086b.tar.bz2
Add base for normalizing html
Diffstat (limited to 'lib/utils/images.js')
-rw-r--r--lib/utils/images.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/utils/images.js b/lib/utils/images.js
new file mode 100644
index 0000000..3ba0f1f
--- /dev/null
+++ b/lib/utils/images.js
@@ -0,0 +1,27 @@
+var fs = require('fs');
+
+var Promise = require('./promise');
+var command = require('./command');
+var error = require('./error');
+
+// Convert a svg file to a pmg
+function convertSVGToPNG(source, dest, options) {
+ if (!command.isAvailable) return Promise.reject(new Error('Could not convert SVG in this platform'));
+ if (!fs.existsSync(source)) return Promise.reject(new error.FileNotFoundError({ filename: source }));
+
+ return command.spawn('svgexport', [source, dest])
+ .fail(function(err) {
+ if (err.code == 'ENOENT') err = new Error('Need to install "svgexport" using "npm install svgexport -g"');
+ throw err;
+ })
+ .then(function() {
+ if (fs.existsSync(dest)) return;
+
+ throw new Error('Error converting '+source+' into '+dest);
+ });
+}
+
+module.exports = {
+ convertSVGToPNG: convertSVGToPNG,
+ INVALID: ['.svg']
+}; \ No newline at end of file