功能一
- 可以保存图像数据到本地为JPG/PNG格式;
- 并且文件名为日期时间。
函数实现
bool save_image(QImage imageData,QString curTime,QString savePath)
{
//图片保存在当前目录下的文件夹
if(image_gray.save(QString("%1/%2.png").arg(save_path,current_date),"PNG",100))
return true; //保存成功
else
return false; //保存失败
}
参数说明
-
QImage imageData:图像数据怎么获取,在此不做说明。
-
QString curTime :为系统时间。
//使用QT获取系统时间,并且转换为“2023-01-16 17:06:00” 格式的字符串
QDateTime curDateTime = QDateTime::currentDateTime(); //获取当前系统时间
QString curTime = curDateTime.toString("yyyy-MM-dd hh:mm:ss:zzz"); //转换为string类型
扩展:
//将“2023-01-16 17:06:00” 格式的字符串,转换为QDateTime类型
QDateTime curDateTime(QDateTime::fromString(curTime,"yyyy-MM-dd hh:mm:ss:zzz"));
- QString savePath:保存文件路径
功能二
- 创建文件夹,并且保存字符为json/txt 等格式文件。
函数实现
#define DIRNAME "./DataDoc" //这段代码写在头文件下面
//保存Json数据为文件
void SaveToJsonFile(Json::Value JsonMessage)
{
//创建新目录
QDir dir(QDir::currentPath());
if(!dir.exists(DIRNAME))
dir.mkdir(DIRNAME);
dir.cd(DIRNAME);
//创建新文件并打开
QFile newFile(QString("%1/%2.json").arg(DIRNAME,curTime));
if(!newFile.open(QIODevice::WriteOnly | QIODevice::Text))
std::cout<<"Open NewFile failed!"<<std::endl;
//写入Json数据到文件里
newFile.write(JsonMessage.toStyledString().c_str());
//关闭文件
newFile.close();
}
参数说明
- Json::Value JsonMessage :为Json数据,格式如下
{
"messageBody" : {
"background_color" : "#DD22DD",
"limit_style" : "timer",
"limit_time" : "2023-01-12 15:00:03,2023-01-17 12:31:00",
"text" : "这是一个提示文本测试",
"text_color" : "#1A94E6",
"text_direction" : "to_left",
"text_fontSize" : "50",
"text_id" : "111111",
"text_scrollInterval" : "5"
},
"messageCommand" : "PLAY_PROMPT_TEXT",
"messageState" : "wait"
}
标签:字符,QDateTime,QT,text,保存,QString,curTime,图像,DIRNAME
From: https://www.cnblogs.com/jj-Must-be-sucessful/p/17056037.html