错误:在AWS Lambda上使用gm降低图像质量时,Stream会产生空缓冲区

时间:2017-07-28 21:46:14

标签: node.js amazon-web-services amazon-s3 lambda gm

我已经阅读了所有其他主题并尝试了几个答案,但我似乎无法弄清楚为什么我会收到此错误。 我的代码在S3存储桶中获取上传的图片,降低质量并将其放入第二个存储桶中。干净利落。 使用小/中等图像一切正常,但如果我上传超过2 MB(或多或少)的东西我得到标题中的错误。 我的Lambda函数有128MB,超时3分钟;这是代码:

const gm = require('gm').subClass({imageMagick: true});
const AWS = require('aws-sdk');
const async = require('async');
const S3 = new AWS.S3();

exports.handler = (event, context, callback) => {
    var srcBucket = event.Records[0].s3.bucket.name;    
    var srcKey = event.Records[0].s3.object.key;
    var dstBucket = "destinationbucket";
    var dstKey = "resized-" + srcKey;

     // Infer the image type.
    var typeMatch = srcKey.match(/\.([^.]*)$/);
    if (!typeMatch) {
        callback("Could not determine the image type.");
        return;
    }

    var imageType = typeMatch[1].toLowerCase();
    if (imageType != "jpg" && imageType != "png" && imageType != "jpeg") {
        callback('Unsupported image type: ${imageType}');
        return;
    }
    async.waterfall([
        function download(next) {
            S3.getObject({Bucket : srcBucket, Key : srcKey}, next);
        },
        function transform(response, next) {
            var img_quality_reduced = gm(response.Body);
            img_quality_reduced.quality(75).toBuffer(function( error, buffer )
                {
                    if( error ) { console.log( error ); return; }
                     next(null, response.ContentType, buffer);
                }
            );
        },
        function upload(contentType, data, next) {
            S3.putObject({Bucket: dstBucket, Key: dstKey, Body: data}, next);
        },
    function ending(next) {
        console.log('got to ending');
        context.done();
    }
    ], function (err) {
        console.log(err);
        context.done();
    });
};

知道为什么会这样吗?我已经将async,gm和graphicsmagick加载到Lambda(作为zip文件)。全部通过npm下载

0 个答案:

没有答案