时间:2021-07-01 10:21:17 帮助过:9人阅读
1.MySQL存入图片
首先建表时要声明字段的类型为longblob类型,如下:
- create table `sfood`(
- `name` varchar(255) not null,
- `type` varchar(255) not null,
- `material` varchar(255) not null,
- `price` int(200) not null,
- `feature` varchar(255) not null,
- `image` longblob,
- primary key(`name`)
- )ENGINE=innodb default charset=gb2312;
image就是我的图片字段,声明为longblob类型,表示食物的图片。
然后往表中插入数据:
insert into sfood(name,type,material,price,feature,image) values('生水白菜','川菜','白菜,生水',8,'清淡',LOAD_FILE('G:\\images\\chuancai\\baicai.jpg'));
这里LOAD_FILE('G:\\images\\chuancai\\baicai.jpg')的作用就是往image字段写入图片,这里用的是绝对路径,表示你图片所在的位子。这是在windows下,如果是在Linux下,要把目录间隔改成//。
这样我们就已经在数据库里写入了图片了。
2.在Qt里如何把图片从数据库里面读出来,接下来的代码都是以上面的表sfood为例:
- QString select = "select * from sfood";
- query.exec(select);
- if( query.next() )
- {
- QLabel *PicLabel = new QLabel();
- QPixmap photo;
- photo.loadFromData(query.value(5).toByteArray(), "JPG"); //从数据库中读出图片为二进制数据,图片格式为JPG,然后显示到QLabel里
- PicLabel->setPixmap(photo);
- PicLabel->setScaledContents(true);
- }
- 3.通过Qt往数据库中写入图片
- query.exec("select * from sfood where name='"+nameEdit->text()+"'"); //我这里本段代码是添加菜品,该句是查询是否有该菜,按名字查询
- if(query.next())
- {
- QMessageBox::information(this,tr("警告"),tr("该菜已在数据库存储了"));
- db.Close();
- return;
- }
- query.prepare("insert into sfood(name,type,material,price,feature,image) values(?,?,?,?,?,?)");
- query.addBindValue(nameEdit->text());
- query.addBindValue(typeEdit->text());
- query.addBindValue(materialEdit->toPlainText());
- query.addBindValue(priceEdit->text());
- query.addBindValue(featureEdit->text());
- //接下来代码是保存图片到数据库
- imagePath.replace("\\","/"); //转换路径格式,imagePath是图片文件的路径,我这里用的是绝对路径
- /*imagePath的获得方法可以这样写:
- imagePath = QFileDialog::getOpenFileName(this, tr("Open File"),
- "/home",
- tr("Images (*.jpg)"));
- */
- QByteArray bytes;
- QBuffer buffer(&bytes);
- buffer.open(QIODevice::WriteOnly);
- pictureLabel->pixmap()->save(&buffer,"JPG");
- QByteArray data;
- QFile* file=new QFile(imagePath); //file为二进制数据文件名
- file->open(QIODevice::ReadOnly);
- data = file->readAll();
- file->close();
- QVariant var(data);
- query.addBindValue(var);
- query.exec();
ok,已经通过Qt将图片写入数据库了。
没什么技巧,希望可以帮到跟我一样需要的菜鸟,也期望有师兄指教错误或者是有更好的方法。