hostr/lib/resize.js

11 lines
250 B
JavaScript
Raw Normal View History

2015-07-09 23:01:43 +01:00
import debugname from 'debug';
const debug = debugname('hostr-api:resize');
import gm from 'gm';
export default function(input, size) {
debug('Resizing');
const image = gm(input);
return image.resize(size.width, size.height, '>').stream();
}