This commit is contained in:
dbroqua 2019-03-12 23:08:50 +01:00
parent 51e379f104
commit 8b8f20a6d1

View File

@ -52,23 +52,24 @@ class Aws {
try {
(async () => {
const file = await imagemin([newFile], '/tmp', {
plugins: [
imageminJpegtran(),
imageminPngquant({
quality: '65-80'
})
]
})
// const file = await imagemin([newFile], '/tmp', {
// plugins: [
// imageminJpegtran(),
// imageminPngquant({
// quality: '65-80'
// })
// ]
// })
console.log('Après imagemin')
// console.log('Après imagemin')
this._send({
path: file[0].path,
path: newFile,
// path: file[0].path,
filename: params.filename
}, (err, res) => {
callback(err, res)
fs.unlink(file[0].path, () => { })
// fs.unlink(file[0].path, () => { })
})
})()
} catch (e) {