You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/src/image.js

39 lines
773 B
JavaScript

'use strict';
var fs = require('fs'),
lwip = require('lwip');
var image = {};
image.resizeImage = function(path, extension, width, height, callback) {
lwip.open(path, function(err, image) {
image.batch()
.cover(width, height)
.crop(width, height)
.writeFile(path, function(err) {
callback(err)
})
});
};
image.convertImageToPng = function(path, extension, callback) {
if(extension !== '.png') {
lwip.open(path, function(err, image) {
if (err) {
return callback(err);
}
image.writeFile(path, 'png', callback)
});
} else {
callback();
}
};
image.convertImageToBase64 = function(path, callback) {
fs.readFile(path, function(err, data) {
callback(err, data ? data.toString('base64') : null);
});
};
module.exports = image;