Files
JavaScriptServices/samples/misc/NodeServicesExamples/Node/resizeImage.js
2016-06-07 16:49:40 +01:00

8 lines
250 B
JavaScript

var sharp = require('sharp');
module.exports = function(result, physicalPath, mimeType, maxWidth, maxHeight) {
sharp(physicalPath)
.resize(maxWidth > 0 ? maxWidth : null, maxHeight > 0 ? maxHeight : null)
.pipe(result.stream);
}