NodeJS和Sharp,BMP到PNG错误:输入文件包含不受支持的图像格式

时间:2019-05-24 09:21:01

标签: javascript node.js png bmp sharp

我正在使用清晰的服务器端准备要在Webapp中提供的图片。 当前的目标是加载图片(BMP格式),以锐利的格式将其加载到nodejs中,以PNG格式进行转换,调整尺寸(缩小)并将其保存回磁盘。代码如下:

  if(resize_pictures){

      (...)

      console.log('Reducing image size ... ');
      fs.readdirSync(input_folder).forEach(file => {
            tmp_input_path = path.join(input_folder, file)
            tmp_output_path = path.join(tmp_folder_reduced, file)

            //Resize
            sharp(tmp_input_path)
                .png() // Convert to png
                .resize(target_width,null)
                .flatten()
                .toFile(tmp_output_path,
                function(err){
                    if(err){
                    console.log("Error at reducing size / converting picture : ")
                    console.log(err)
                    console.log(tmp_input_path);
                    console.log(tmp_output_path);
                    return;
                    }
                })
    })
    console.log('Image reduction completed.');

enter image description here

我遇到此错误:

Reducing image size ... 
Image reduction completed.
Error at reducing size / converting picture : 
[Error: Input file contains unsupported image format]
/home/user/<folder>/16c93ac9f297376b1b44eeeecff141b1f59a239d.bmp
/home/user/<folder>/TMP/16c93ac9f297376b1b44eeeecff141b1f59a239d.bmp

输出文件夹为空。

我真的不明白为什么:路径正确,因此可以访问。图片存储在磁盘上,路径是直接在服务器端计算的(因此,没有编码问题,就像我在其他地方可以看到的那样)。

有人会有想法或解决方案吗?

1 个答案:

答案 0 :(得分:0)

似乎Sharp不能处理BMP图片。 (请参阅:https://github.com/lovell/sharp/issues/1255

所以我切换到Jimp(请参阅:https://www.npmjs.com/package/jimp):

  console.log('Reducing image size ... ');
  fs.readdirSync(input_folder).forEach(file => {
        let tmp_input_path = path.join(input_folder, file)
        let tmp_file = file.substr(0, file.lastIndexOf(".")) + ".png";
        let tmp_output_path = path.join(tmp_folder_reduced, tmp_file)

        if(fs.existsSync(tmp_input_path)){
            console.log("File exist ! ")
        }

        //Resize
        Jimp.read(tmp_input_path)
            .then(image => {
                image
                .resize(target_width, Jimp.AUTO)
                .write(tmp_output_path)
            })
            .catch(err => {
                console.log("Error at reducing size / converting picture : ")
                console.log(err)
                console.log(tmp_input_path);
                console.log(tmp_output_path);
            });