Golang : Convert an image file to []byte
This is a quick tutorial on how to convert an image file to byte array. This question was originally posted to me via email at admin@socketloop.com by Mr. Aung.
Basically, Mr. Aung would like to know how to turn an image file into a byte array ( []byte )
and the answer is :
fileToBeUploaded := "image.jpg"
file, err := os.Open(fileToBeUploaded)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
defer file.Close()
fileInfo, _ := file.Stat()
var size int64 = fileInfo.Size()
bytes := make([]byte, size)
// read file into bytes
buffer := bufio.NewReader(file)
_, err = buffer.Read(bytes) // <--------------- here!
// then we need to determine the file type
// see https://www.socketloop.com/tutorials/golang-how-to-verify-uploaded-file-is-image-or-allowed-file-types
filetype := http.DetectContentType(bytes)
err = bucket.Put(path, bytes, filetype, s3.ACL("public-read"))
the code fragment is taken from https://www.socketloop.com/tutorials/golang-upload-and-download-file-to-from-aws-s3
See also : Golang : Upload and download file to/from AWS S3
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+14.1k Golang : How to shuffle elements in array or slice?
+13.9k Golang : Chunk split or divide a string into smaller chunk example
+24.9k Golang : Get current file path of a file or executable
+9.8k Golang : Check a web page existence with HEAD request example
+14.1k Golang : On enumeration
+5.1k Unix/Linux/MacOSx : How to remove an environment variable ?
+27.1k Golang : Convert integer to binary, octal, hexadecimal and back to integer
+27k Golang : Convert CSV data to JSON format and save to file
+9.7k Golang : Convert octal value to string to deal with leading zero problem
+11.7k Golang : Convert a rune to unicode style string \u
+12k Golang : How to display image file or expose CSS, JS files from localhost?
+7.6k Golang : Load DSA public key from file example