這篇文章給大家介紹python中怎么向mysql中存儲(chǔ)圖片,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
創(chuàng)新互聯(lián)主營(yíng)泗縣網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,成都app軟件開(kāi)發(fā)公司,泗縣h5重慶小程序開(kāi)發(fā)公司搭建,泗縣網(wǎng)站營(yíng)銷(xiāo)推廣歡迎泗縣等地區(qū)企業(yè)咨詢(xún)示例代碼如下:
#!/usr/bin/python # -*- coding: utf-8 -*- import MySQLdb as mdb import systry: fin = open("chrome.png") img = fin.read() fin.close() except IOError, e: print "Error %d: %s" % (e.args[0],e.args[1]) sys.exit(1)try: conn = mdb.connect(host='localhost',user='testuser', passwd='test623', db='testdb') cursor = conn.cursor() cursor.execute("INSERT INTO Images SET Data='%s'" % \ mdb.escape_string(img)) conn.commit() cursor.close() conn.close() except mdb.Error, e: print "Error %d: %s" % (e.args[0],e.args[1]) sys.exit(1)
首先,我們打開(kāi)一個(gè)圖片,并讀取圖片數(shù)據(jù),代碼如下:
fin = open("chrome.png")
img = fin.read()
接著,我們把圖片數(shù)據(jù)插入到數(shù)據(jù)庫(kù)中,并使用escape_string進(jìn)行特殊字符串轉(zhuǎn)義。代碼如下:
cursor.execute("INSERT INTO Images SET Data='%s'" % \
mdb.escape_string(img))
(十三)讀取圖片
上一節(jié)中,我們把圖片存儲(chǔ)到數(shù)據(jù)庫(kù)中了,在本節(jié),我們將取回并保存為圖片文件。本節(jié)示例如下:
#!/usr/bin/python # -*- coding: utf-8 -*- import MySQLdb as mdb import systry: conn = mdb.connect(host='localhost',user='testuser', passwd='test623', db='testdb') cursor = conn.cursor() cursor.execute("SELECT Data FROM Images LIMIT 1") fout = open('image.png','wb') fout.write(cursor.fetchone()[0]) fout.close() cursor.close() conn.close() except IOError, e: print "Error %d: %s" % (e.args[0],e.args[1]) sys.exit(1)
首先,我們從數(shù)據(jù)庫(kù)中讀取一張圖片數(shù)據(jù):
cursor.execute("SELECT Data FROM Images LIMIT 1")
接著,我們以二進(jìn)制的寫(xiě)方式打開(kāi)一個(gè)文件,寫(xiě)入圖片數(shù)據(jù):
fout = open('image.png','wb')
fout.write(cursor.fetchone()[0])
關(guān)于python中怎么向mysql中存儲(chǔ)圖片就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。