We're a community of 1077K IT Pros here for help, advice, solutions, professional growth and fun. Join us!
1,076,415 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?

JPEG Base64 Image String (Python)

1
By vegaseat on Oct 7th, 2005 1:54 am

This short code lets you create a base64 encoded image string, that you can copy and paste into your Python program code to display relatively small embedded images.

For a typical application see:
http://www.daniweb.com/code/snippet393.html

# base64 encoding converts binary data to plain text
# it stores each group of three binary bytes as a group of four characters from the text set:
#     ABCDEFGHIJKLMNOPQRSTUVWXYZ  abcdefghijklmnopqrstuvwxyz  0123456789+/
#     the = character is used for padding at the end of the data stream
# this way an image file can be represented as a string to transmit or
# a short image can be embedded in code as a string, you can insert newlines at
# convenient locations into this embedded string, they will be ignored when
# decoding with for instance   jpg1 = base64.b64decode(jpg1_b64)
# tested with Python24       vegaseat     06oct2005

import base64

# pick a jpeg file you have and want ...
jpgfile = "halloween3.jpg"

# note: binary read "rb" is required!
# this gives a one line string ...
#jpg_text = 'jpg1_b64 = \\\n"""' + base64.b64encode(open(jpgfile,"rb").read()) + '"""'
# another option, inserts newlines about every 76 characters, easier to copy and paste!
jpg_text = 'jpg1_b64 = \\\n"""' + base64.encodestring(open(jpgfile,"rb").read()) + '"""'

print jpg_text

# optionally save to a text file
filename = "jpg1_b64.txt"
try:
    fout = open(filename, "w")
    fout.write(jpg_text)
    fout.close()
except IOError:
    print "File %s could not be saved!" % filename

Post: Markdown Syntax: Formatting Help
 
You
 
© 2013 DaniWeb® LLC
Page rendered in 0.0480 seconds using 2.63MB