import base64, urllib.request
#image = urllib.request.urlopen('http://docs.python.org/_static/py.png')
#image_64 = base64.encodestring(image.read())
#이미지 읽기
tt = open('c:/tt.jpg','rb')
btt = base64.encodestring(tt.read())
#파일쓰기
f = open("myimg.html", 'w')
dec = btt.decode('utf-8')
f.write('<img src = "data:x-image/gif;base64,' + dec + '">')
f.close()
'프로그래밍언어 > Python' 카테고리의 다른 글
프로세스종료 (0) | 2014.10.29 |
---|---|
SendMessage (0) | 2014.10.29 |
string to base64 (0) | 2014.10.28 |
파이썬 winapi 사용할수 있게 해주는 모듈 (0) | 2014.10.07 |
주절주절) Sl4a 활용하기.. (0) | 2014.10.02 |