溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python中怎么向mysql中存儲圖片

發(fā)布時間:2021-08-13 15:37:31 來源:億速云 閱讀:623 作者:Leah 欄目:數(shù)據(jù)庫

這篇文章給大家介紹python中怎么向mysql中存儲圖片,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

示例代碼如下:

#!/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)

python中怎么向mysql中存儲圖片

首先,我們打開一個圖片,并讀取圖片數(shù)據(jù),代碼如下:

fin = open("chrome.png")

img = fin.read()

接著,我們把圖片數(shù)據(jù)插入到數(shù)據(jù)庫中,并使用escape_string進(jìn)行特殊字符串轉(zhuǎn)義。代碼如下:

cursor.execute("INSERT INTO Images SET Data='%s'" % \

    mdb.escape_string(img))

(十三)讀取圖片

上一節(jié)中,我們把圖片存儲到數(shù)據(jù)庫中了,在本節(jié),我們將取回并保存為圖片文件。本節(jié)示例如下:

python中怎么向mysql中存儲圖片

#!/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)

python中怎么向mysql中存儲圖片

首先,我們從數(shù)據(jù)庫中讀取一張圖片數(shù)據(jù):

cursor.execute("SELECT Data FROM Images LIMIT 1")

接著,我們以二進(jìn)制的寫方式打開一個文件,寫入圖片數(shù)據(jù):

fout = open('image.png','wb')

fout.write(cursor.fetchone()[0])

關(guān)于python中怎么向mysql中存儲圖片就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI