图片上传
npm i --save multiparty
const multiparty = require('multiparty');
let form = new multiparty.Form({uploadDir: upload.path});
如果回调提供,autofields和autofiles被设置为true,所有字段和文件的收集和传递给回调,不再需要听任何形式的事件。
part 请求文件数据时触发,回调函数是一个实现可读流的实例对象
aborted 在请求中止时触发
close 在请求结束之后触发
file 接收到文件的参数
field 获取请求的具体数据。回调函数两个参数
注意使用part事件时,如果同时监听fields和files事,part事件会获取不到数据。
更多说明
let upload = uploadPath();
console.dir(upload);
let form = new multiparty.Form({
uploadDir: upload.path
});
form.on('error', function (err) {
console.log('Error parsing form: ' + err.stack);
});
form.on('file', (name, file) => {
console.log(file);
res.json(file);
});
form.on('close', function () {
console.log('Upload completed!');
});
form.parse(req);
一般来说上传图片都会进行简单的处理,例如无损画质压缩,缩略图生成等
npm install –save resize-img
const resizeImg = require('resize-img');
resizeImg(fs.readFileSync(file_path), {width: 800}).then(buf => {
fs.writeFileSync(file_path, buf);
});
CPU密集型任务是Node.js的软肋,当服务器同时执行多个图片处理时(特别是比较大的图片时),会出现BUG,所以我们可以选用python图片处理库PIL
pip install pillow
from PIL import Image
import glob
import os
import sys
try:
im = Image.open(sys.argv[1])
o_width = im.size[0]
o_height = im.size[1]
thumb_width = 400
size = (thumb_width, o_height * thumb_width / o_width)
im.thumbnail(size)
im.save(sys.argv[2],im.format)
print(sys.argv[2])
except IOError:
print("cannot create thumbnail for", sys.argv[1])
const path = require('path');
const exec = require('child_process').exec;
let baseDir = path.resolve(__dirname, '..');
let thumb_pic = (arg1, arg2) => {
return new Promise((resolve, reject) => {
let py_path = baseDir + "/public/py/";
exec(`python ${py_path}thumb_pic.py ${arg1} ${arg2}`, function (error, stdout, stderr) {
if (stdout.length > 0) {
console.log('you offer args:', stdout);
resolve(true);
} else {
console.log('you don\'t offer args');
resolve(false);
}
if (error) {
console.info('stderr : ' + stderr);
reject(stderr);
}
});
});
};
module.exports.thumb_pic = thumb_pic;
源码地址