19

我正在将此 Flex 表单的内容(不要问为什么)发送到 node.js。有一个名为“photo”的后置参数,它是一个 base64 编码的图像。

照片内容发送成功。问题是当我试图解码内容并将它们写入文件时。

  var fs = require("fs");

  fs.writeFile("arghhhh.jpg", new Buffer(request.body.photo, "base64").toString(), function(err) {});

我也尝试过 toString("binary") 。但似乎节点没有解码所有内容。似乎它只解码 jpg 标头信息并留下其余部分。

谁能帮我解决这个问题?

谢谢

4

4 回答 4

29

尝试.toString()完全删除并直接写入缓冲区。

于 2012-04-06T00:03:40.963 回答
12

这是我的完整解决方案,它可以读取任何 base64 图像格式,对其进行解码并以正确的格式保存在数据库中:

    // Save base64 image to disk
    try
    {
        // Decoding base-64 image
        // Source: http://stackoverflow.com/questions/20267939/nodejs-write-base64-image-file
        function decodeBase64Image(dataString) 
        {
          var matches = dataString.match(/^data:([A-Za-z-+\/]+);base64,(.+)$/);
          var response = {};

          if (matches.length !== 3) 
          {
            return new Error('Invalid input string');
          }

          response.type = matches[1];
          response.data = new Buffer(matches[2], 'base64');

          return response;
        }

        // Regular expression for image type:
        // This regular image extracts the "jpeg" from "image/jpeg"
        var imageTypeRegularExpression      = /\/(.*?)$/;      

        // Generate random string
        var crypto                          = require('crypto');
        var seed                            = crypto.randomBytes(20);
        var uniqueSHA1String                = crypto
                                               .createHash('sha1')
                                                .update(seed)
                                                 .digest('hex');

        var base64Data = 'data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAZABkAAD/4Q3zaHR0cDovL25zLmFkb2JlLmN...';

        var imageBuffer                      = decodeBase64Image(base64Data);
        var userUploadedFeedMessagesLocation = '../img/upload/feed/';

        var uniqueRandomImageName            = 'image-' + uniqueSHA1String;
        // This variable is actually an array which has 5 values,
        // The [1] value is the real image extension
        var imageTypeDetected                = imageBuffer
                                                .type
                                                 .match(imageTypeRegularExpression);

        var userUploadedImagePath            = userUploadedFeedMessagesLocation + 
                                               uniqueRandomImageName +
                                               '.' + 
                                               imageTypeDetected[1];

        // Save decoded binary image to disk
        try
        {
        require('fs').writeFile(userUploadedImagePath, imageBuffer.data,  
                                function() 
                                {
                                  console.log('DEBUG - feed:message: Saved to disk image attached by user:', userUploadedImagePath);
                                });
        }
        catch(error)
        {
            console.log('ERROR:', error);
        }

    }
    catch(error)
    {
        console.log('ERROR:', error);
    }
于 2014-10-16T06:27:20.687 回答
2

在 nodejs 8.11.3new Buffer(string, encoding)中已弃用,取而代之的是新的方法Buffer.from(string, encoding)总是没有.toString(). 有关更多详细信息,请阅读nodejs 文档中的文档:缓冲区

于 2018-08-06T19:47:02.100 回答
0

消除.toString()

在这里,您将 base64 解码为缓冲区,这很好,但随后您将缓冲区转换为字符串。这意味着它是一个字符串对象,其代码点是缓冲区的字节。

于 2013-10-22T06:33:43.073 回答