web-dev-qa-db-ja.com

Node.jsBase64画像のデコードとファイルへの書き込み

このFlexフォームの内容(理由は聞かないでください)をノードに送信しています。 base64でエンコードされた画像である「写真」と呼ばれるポストパラメータがあります。

写真の内容はOKで送信されます。問題は、コンテンツをデコードしてファイルに書き込もうとしているときです。

  var fs = require("fs");

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

ToString( "binary")も試しました。しかし、ノードはすべてのコンテンツをデコードしていないようです。 jpgヘッダー情報のみをデコードし、残りを残すようです。

誰かがこれを手伝ってくれませんか?

ありがとう

19
Mehdi

.toString()を完全に削除して、直接バッファに書き込むだけです。

27
Nathan Friedly

これは、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);
    }
12
Placeholder

Nodejs 8.11.3ではnew Buffer(string, encoding)は非推奨になりました。代わりに、これを行う新しい方法は、常にBuffer.from(string, encoding)なしで.toString()です。詳細については、 nodejs docs:Buffer のドキュメントをお読みください。

.toString()を削除します

ここでは、base64をバッファにデコードしますが、これは問題ありませんが、バッファを文字列に変換します。これは、コードポイントがバッファのバイトである文字列オブジェクトであることを意味します。

0
sam100rav