Skip to content

Instantly share code, notes, and snippets.

@kwmt
Last active December 24, 2015 05:29
Show Gist options
  • Save kwmt/6750943 to your computer and use it in GitHub Desktop.
Save kwmt/6750943 to your computer and use it in GitHub Desktop.
ある適当な画像(ここでは"image.jpg")をbase64エンコードした文字列に変換したあと、変換された文字列をデコードして画像ファイル(ここでは"encode_and_decord.jpg")を作成する。(同じ画像ファイルが作成されるだけですが...)
package main
import (
"encoding/base64"
"os"
)
func main() {
str := encode()
decode(str)
}
//エンコード
func encode() string {
file, _ := os.Open("image.jpg")
defer file.Close()
fi, _ := file.Stat() //FileInfo interface
size := fi.Size() //ファイルサイズ
data := make([]byte, size)
file.Read(data)
return base64.StdEncoding.EncodeToString(data)
}
//デコード
func decode(str string) {
data, _ := base64.StdEncoding.DecodeString(str) //[]byte
file, _ := os.Create("encode_and_decord.jpg")
defer file.Close()
file.Write(data)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment