在ParseCloud中将BMP文件转换为JPG

时间:2015-01-29 13:23:39

标签: javascript parse-platform image-conversion

我试图将某种图像转换为jpg并保存为解析文件。

使用parse-image模块适用于GIF和PNG文件,但我也需要转换一些BMP文件,此模块不适用于.bmp文件。

我是否还在ParseCloud上进行此图像转换?

这是我用于解析图片的代码:

    Parse.Cloud.httpRequest({ url: url }).then(function(response) {
      // Create an Image from the data.
      var image = new Image();
      return image.setData(response.buffer);

    },function(error) { 
        console.log("Image not generated " + error.text);
    }).then(function(image) {
      // Format the image to a JPEG.
      return image.setFormat("JPEG");        
    },function(error) { 
        console.log("Image set format failed");
    })

韩国社交协会,

0 个答案:

没有答案