Skip to content

Instantly share code, notes, and snippets.

@baodinh
Created August 26, 2020 20:24
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Convert data:image/png;base64,iVBORw0KGgoAAA to []byte
func streamToByte(stream io.Reader) []byte {
buf := new(bytes.Buffer)
buf.ReadFrom(stream)
return buf.Bytes()
}
// pass reader to NewDecoder
dec := base64.NewDecoder(base64.StdEncoding, strings.NewReader(base64string[i+1:]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment