使用Python 3从MySQL数据库中逐个检索多个图像

时间:2017-11-11 09:37:12

标签: python mysql

我有一张用于插入图片的表格。从那以后,我只使用MySQL数据库和Python 3代码检索图像。我的代码执行得很好,但我的问题是每当我检索图像时它会向我显示第一张放在我的表格中的图像而我不知道如何使用for循环逐个检索blob。

这是我的代码: - code.py:

from PIL import Image
import pymysql
from api import mysql

db=pymysql.connect(host="localhost",user="root",passwd="root",db="votelist")
image = Image.open('D:/mine project/face_reg/media/a.jpg')
blob = open('D:/mine project/face_reg/media/a.jpg', 'rb').read()
sql = 'INSERT INTO imo(image) VALUES(%s)'
args = (blob)
cursor=db.cursor()
cursor.execute(sql,args)
sql1='select image from imo'
# i=sql1
# for image in i:
#     print(i)
# else:
#     print("no")
db.commit()
cursor.execute(sql1)
data=cursor.fetchall()
print ('Inserted')
file_like=io.BytesIO(data[0][0])
img=PIL.Image.open(file_like)
img.show()
print('retrieved')
db.close()

我试过了,但我无法获得预期的输出。任何人都可以帮助我...

1 个答案:

答案 0 :(得分:1)

我已经尝试了,我现在得到了我预期的输出..

import io
from io import BytesIO

import PIL.Image
# import cStringIO
from PIL import Image
import pymysql
from api import mysql

db=pymysql.connect(host="localhost",user="root",passwd="root",db="votelist")
image = Image.open('D:/mine project/face_reg/media/a.jpg')
blob = open('D:/mine project/face_reg/media/a.jpg', 'rb').read()
sql = 'INSERT INTO imo(image) VALUES(%s)'
args = (blob)
cursor=db.cursor()
cursor.execute(sql,args)
sql1='select image from imo'
conn=mysql.connect()
cursor=conn.cursor()
cursor.execute("select * from imo")
data=cursor.fetchall()
for a in data:
    file_like = io.BytesIO(a[0])
    img = PIL.Image.open(file_like)
    img.show()