35
26

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Node.js]Basse64エンコード、Base64デコードしてみた

Last updated at Posted at 2016-07-29

画像のBase64エンコード、デコードを Node.js(v4.4.4) で試した際のメモです。

以下の「1」、「3」について Node.js で書いてみました。

  1. xxx.png を一旦エンコードしてDBなどに保存。
  2. DBなどから文字列を取得し、encoded.pngとして保存
  3. 再度デコードして保存。pngとして表示できる

エンコード

encode.js
var fs = require('fs');
fs.readFile('xxx.png', 'base64', function(err, data) {
  if (err) throw err;
  // どこかに文字列として保存
  console.log(data);
});

デコード

decode.js
var fs = require('fs');
fs.readFile('encoded.png', 'utf8', function(err, data) {
  var decode = new Buffer(data,'base64');
  fs.writeFile('xxx.png', decode, function(err) {
    console.log(err);
  });
});
35
26
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
35
26

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?