1

我正在使用 azure 函数使用 jimp 生成缩略图。我面临的挑战是 azure 容器上的内容类型最终是 application/octet-stream 而不是 image/jpeg。如何解决这个问题?

这是代码:

var Jimp = require("jimp");

module.exports = (context, myBlob) => {

    // Read image with Jimp
    Jimp.read(myBlob).then((image) => {

        // Manipulate image
        image
            .resize(200, 200)

            .getBuffer( Jimp.MIME_JPEG, (error, stream) => {

                // Check for errors
                if (error) {
                    context.log(`There was an error processing the image.`);
                    context.done(error);
                }
                else {

                    context.log(`Successfully processed the image`);

                    context.bindingData.properties = {contentType: Jimp.MIME_JPEG}   

                    // Bind the stream to the output binding to create a new blob
                    context.done(null, stream);

                }

            });

    });

};
4

1 回答 1

1

不幸的是,Blob 输出绑定目前不支持设置内容类型。请参阅Blob 绑定无法设置 ContentType 和其他属性来跟踪进度。

目前,您必须回退到直接使用 Storage SDK。有关示例,请参见同一问题中的此评论。

如果 C# 是一个选项,请检查此示例

于 2018-06-17T10:51:07.397 回答