如何使用Python3.x将图片存储到MySQL并显示出来?
时间:2023-05-10 09:14
然后我们需要打开python,我使用的是pycharm。 我们需要用到的包是 pymysql 我们把所要导进去的图片拖进pycharm中,设置好名称以便一会使用,我们首先读取图片文件(使用二进制读取方法,‘rb’) 然后我们与mysql进行连接: 创建游标,使用cursor函数: 读取图片信息 使用execute函数修改数据库: 注意:如果一直显示没有权限连接数据库,我们先登录数据库,并进入你的mysql数据库,然后改变host: 注意在最后一定要关闭游标和连接。 写完我们可以在数据库中查看我们设的表中的内容,但由于解码方式,我们看到的是一堆乱码,我们可以在pycharm中显示图片。 数据库表 vbp_person_ext 包含三个字段:person_id, image, img_type(image是图片信息) 报错: UnicodeEncodeError: 'latin-1' codec can't encode characters in position 303-304: ordinal not in range(256) 解决:增加 charset='utf8 以上就是如何使用Python3.x将图片存储到MySQL并显示出来?的详细内容,更多请关注Gxl网其它相关文章!python3向mysql存储图片并显示
首先我们建好数据库,然后进入cmd,在系统操作框中输入ipconfig显示本机的ip信息
主要要获知本机ip地址。
我们需要在mysql中先建立一个表,并把字段设置好,输入下面代码:create table image(id int(5)auto_increment primary key,image1 mediumblob)
f = open('2.jpg','rb')img = f.read()f.close()
gao = pymysql.connect( host='157.142.13.27',#本机或其他机器的ip地址 port=3306,#接口 user='root',#用户名 passwd='******',#密码 db='gao',#你所使用的数据库 charset='utf8',#编码方式 use_unicode=True, )
g = gao.cursor()
f = open('2.jpg','rb')data = f.read()
g.execute('insert into image(image1) values (%s)'%data)
update user set host = '%' where user = 'root';mysql>flush rivileges
python将图片导入mysql数据库
# 今天需要用Python实现将图片导入MySQL数据库。看了看网上的一些写法,自己也过一遍,记录下来,以防忘记。 # 功能:将图片导入到MySQL数据库import sysimport pymysqlfrom PIL import Imageimport os path = "./" #读取图片文件fp = open("./陈丹江-420381198212068517.JPG", 'rb')img = fp.read()fp.close() #建立一个MySQL连接database = pymysql.connect(host="10.31.143.6", user="root", passwd="******", db="aaa", charset='utf8')# 存入图片# 创建游标cursor = database.cursor()#注意使用Binary()函数来指定存储的是二进制sql = "INSERT INTO vbp_person_ext (person_id, image, img_type) VALUES (%s, %s, %s);"args = ('39', img, 'JPG')cursor.execute(sql, args) database.commit()# 关闭游标cursor.close()# 关闭数据库连接database.close()print("============")print("Done! ")
过程中遇到问题