QT5 WebCapture 页面定时截图工具

QT5 WebCapture 网页定时截图工具

1.设置启动时间,程序会到启动时间后开始对网页依次进行截图
2.根据所需截图的页面加载速度,设置页面等待时间,尽量达到等页面加载完成后,再执行截图
3.根据需求,设置截图周期
4.程序会使用默认浏览器打开页面进行截图,每轮截图完成后,便会根据默认浏览器进程名称关闭浏览器(防止留存大量页面导致系统卡顿)

运行情况

在这里插入图片描述

项目结构

在这里插入图片描述

源代码

WebCapture.pro

#-------------------------------------------------
#
# Project created by QtCreator 2023-08-22T16:47:49
#
#-------------------------------------------------QT += core gui
QT +=testlibgreaterThan(QT_MAJOR_VERSION, 4): QT += widgetsTARGET = WebCapture
TEMPLATE = app# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0SOURCES += \main.cpp \mainwindow.cppHEADERS += \mainwindow.hFORMS += \mainwindow.uiRESOURCES += \icon.qrc

mainwindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H#include <QMainWindow>
#include <QDesktopServices>
#include <QUrl>
#include <QTest>
#include <QApplication>
#include <QScreen>
#include <QPixmap>
#include <QIcon>
#include <QRegularExpression>
#include <QRegularExpressionMatch>
#include <QRegularExpressionMatchIterator>
#include <QDateTime>
#include <QTimer>
#include <QElapsedTimer>#include<QProcess>namespace Ui {
class MainWindow;
}class MainWindow : public QMainWindow
{Q_OBJECTpublic:explicit MainWindow(QWidget *parent = 0);void GetScreen(int count);//截取整个屏幕并保存void _CloseBrowser();void _EachTurn(QString urls);//执行每一轮截图float _WebWaitTime=20;//截图等待时间,单位为秒float _Interval=30;//截图周期,单位为分钟QString _Browser="";//默认浏览器的名称.exeQDateTime datetimeValue;//首次开始截图的时间QString log="";qint64 timestamp;~MainWindow();private slots:void on_pushButton_Start_clicked();private:Ui::MainWindow *ui;
};#endif // MAINWINDOW_H

main.cpp

#include "mainwindow.h"
#include <QApplication>
#include <QScreen>
#include <QGuiApplication>
#include <QPixmap>int main(int argc, char *argv[])
{QApplication a(argc, argv);MainWindow w;w.show();return a.exec();
}

mainwindow.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"MainWindow::MainWindow(QWidget *parent) :QMainWindow(parent),ui(new Ui::MainWindow)
{ui->setupUi(this);QDateTime currentDateTime = QDateTime::currentDateTime();ui->dateTimeEdit_StartTime->setDisplayFormat("yyyy/MM/dd HH:mm:ss");ui->dateTimeEdit_StartTime->setDateTime(currentDateTime);//固定窗体大小,this->setMaximumSize(this->width(),this->height());this->setMinimumSize(this->width(),this->height());//隐藏最大化按钮this->setWindowFlag(Qt::WindowMaximizeButtonHint,0);this->setWindowTitle("定时截图工具-半个橘子");this->setWindowIcon(QIcon(":/myicon/bgjzicon.png"));}MainWindow::~MainWindow()
{delete ui;
}void MainWindow::on_pushButton_Start_clicked()
{//这一段是用来匹配出每一个url,可以增加一些对输入格式的兼容性...........................................................QString urls=ui->plainTextEdit_urls->toPlainText();//qDebug()<<"原始字符串:"<<urls<<endl;//排除url重定向的链接打乱顺序 如 http://xx.xxx.xx.x/login.php?redirect=http://xxx.xx.xx/urls.replace("=http","1");//去除\r\n\turls.remove("\n"); urls.remove("\r"); urls.remove("\t");urls.remove(" ");//这样可以使用fengefu有效分割出每个url,适应不同的输入格式urls.replace("http://","fengefuhttp://");urls.replace("https://","fengefuhttps://");//在末尾加上分隔符这样可以兼容最后一个url,使得最后一个url得到匹配urls=urls+"fengefu";//qDebug()<<"处理后的字符串"<<urls;//设置为禁用ui->pushButton_Start->setDisabled(true);ui->plainTextEdit_urls->setDisabled(true);ui->dateTimeEdit_StartTime->setDisabled(true);ui->lineEdit_interval->setDisabled(true);ui->lineEdit_WebWaitTime->setDisabled(true);ui->lineEdit_browser->setDisabled(true);ui->pushButton_Start->setText("进行中...");this->log="";//获取单个页面等待时间,默认占位填写的是10秒this->_WebWaitTime=ui->lineEdit_WebWaitTime->text().toFloat();//获取截图周期,默认占位写的是30分钟this->_Interval=ui->lineEdit_interval->text().toFloat();qDebug()<<"截图周期"<<this->_Interval<<"分钟"<<endl;//获取浏览器进程名称this->_Browser=ui->lineEdit_browser->text();//获取首次开始时间this->datetimeValue=ui->dateTimeEdit_StartTime->dateTime();//转换为时间戳this->timestamp = datetimeValue.toMSecsSinceEpoch();this->log=this->log+"本轮截图将于"+datetimeValue.toString("yyyy-MM-dd HH:mm:ss")+"开始,图片将保存至ScreenPicture文件夹内\n";ui->plainTextEdit_log->setPlainText(this->log);//时间到的时候,自动进行一轮截图QTimer *timer = new QTimer(this);connect(timer, &QTimer::timeout, this, [=](){QDateTime currentTime = QDateTime::currentDateTime();if(currentTime.toMSecsSinceEpoch() >= this->timestamp){_EachTurn(urls); // 执行一轮截图// 计算下次开始时间this->datetimeValue = this->datetimeValue.addSecs(this->_Interval*60);this->timestamp = this->datetimeValue.toMSecsSinceEpoch(); // 下次执行时间的时间戳this->log = this->log + "本轮截图将于" + datetimeValue.toString("yyyy-MM-dd HH:mm:ss") + "开始,图片将保存至ScreenPicture文件夹内\n";ui->plainTextEdit_log->setPlainText(this->log);}});timer->start(1000); // 每1000毫秒(1秒)触发一次}void MainWindow::_EachTurn(QString urls)//执行每一轮截图{//提取urlsQRegularExpression Re("(?<url>http[s]{0,1}.*?://.*?)fengefu");QRegularExpressionMatchIterator Matchs=Re.globalMatch(urls);QRegularExpressionMatch match=Matchs.next();QString oneUrl=match.captured("url");//提取每一个urlqDebug()<<"提取到"<<oneUrl<<endl;QDesktopServices::openUrl(QUrl(oneUrl));QTest::qSleep(this->_WebWaitTime*1500);//等到完全加载好,乘1500是多加载一会,因为对于第一个页面正则和打开浏览器都消耗了时间int count=1;this->GetScreen(count);//截图保存while(Matchs.hasNext()==true){QTest::qSleep(2000);//等一会再打开下一个网页,不然会截错match=Matchs.next();oneUrl=match.captured("url");qDebug()<<"提取到"<<oneUrl<<endl;// 打开一个网页QDesktopServices::openUrl(QUrl(oneUrl));QTest::qSleep(this->_WebWaitTime*1000);//等到一会,到页面完全加载好count++;this->GetScreen(count);//截图保存}this->_CloseBrowser();//完成本轮截图,关闭打开的默认浏览器this->log=this->log+"———截图完成———\n\n";}void MainWindow::GetScreen(int count)//截取整个屏幕并保存
{//截取整个屏幕并保存QScreen *screen = QApplication::primaryScreen();QPixmap originalPixmap = screen->grabWindow(0);// 将时间格式化为字符串并输出QString timeString = this->datetimeValue.toString("yyyy年MM月dd日-HH时mm分");QString picname="ScreenPicture/"+timeString+"-"+QString::number(count)+".png";originalPixmap.save(picname);
}void MainWindow::_CloseBrowser()//关闭默认浏览器
{//执行cmd命令QProcess p(0);QString command="taskkill /im "+this->_Browser+" /f";p.start("cmd", QStringList()<<"/c"<<command);p.waitForFinished();QString strTemp=QString::fromLocal8Bit(p.readAllStandardOutput());qDebug()<<strTemp;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/132772.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

UDP和TCP特点(部分)对比:

传输层的两个主要协议&#xff1a;TCP 和 UDP UDP和TCP特点&#xff08;部分&#xff09;对比&#xff1a; UDP&#xff1a;无连接&#xff0c; 不可靠传输&#xff0c; 面向数据报&#xff0c; 全双工。 TCP&#xff1a;有连接&#xff0c; 可靠传输&#xff0c; 面向字节流…

英语——方法篇——单词——谐音法+拼音法——50个单词记忆

theatre&#xff0c;剧场&#xff0c;太后th吃eat热re食物&#xff0c;就去剧场了 loud dolphin&#xff0c;做do脸皮厚plh在。。。里 humid&#xff0c;hu湖mi米d的 blender&#xff0c;b爸lend借给er儿。 tragedy&#xff0c;tr土人

layui tree监控选中事件,同步选中和取消

需求&#xff1a;需要分配权限时&#xff0c;要通过组织架构分配&#xff0c;也要通过角色分配&#xff0c;还是把选择的结果显示出来 结果如下图 代码分页面&#xff0c;类和SQL 页面&#xff1a; <% Page Language"C#" AutoEventWireup"true" Code…

视频监控系统/安防视频平台EasyCVR广场视频细节优化

安防视频监控系统/视频云存储/安防监控EasyCVR视频汇聚平台基于云边端智能协同&#xff0c;支持海量视频的轻量化接入与汇聚、转码与处理、全网智能分发、视频集中存储等。安防视频汇聚平台EasyCVR拓展性强&#xff0c;视频能力丰富&#xff0c;可实现视频监控直播、视频轮播、…

JVM篇---第九篇

系列文章目录 文章目录 系列文章目录一、什么是指针碰撞&#xff1f;二、什么是空闲列表三、什么是TLAB&#xff1f; 一、什么是指针碰撞&#xff1f; 一般情况下&#xff0c;JVM的对象都放在堆内存中&#xff08;发生逃逸分析除外&#xff09;。当类加载检查通过后&#xff0…

抖音小程序没人做了吗?

我是卢松松&#xff0c;点点上面的头像&#xff0c;欢迎关注我哦&#xff01; 咱说的严谨点&#xff0c;不是没人做了&#xff0c;而是做的人少了。利益驱使&#xff0c;越来越多的人开始思考新方向了&#xff0c;开发小程序的人少了&#xff0c;排名也没多少人做了&#xff…

【数据结构】深入探讨二叉树的遍历和分治思想(一)

&#x1f6a9;纸上得来终觉浅&#xff0c; 绝知此事要躬行。 &#x1f31f;主页&#xff1a;June-Frost &#x1f680;专栏&#xff1a;数据结构 &#x1f525;该文章主要讲述二叉树的递归结构及分治算法的思想。 目录&#xff1a; &#x1f30d;前言&#xff1a;&#x1f30d;…

基于SpringBoot的网上摄影工作室

目录 前言 一、技术栈 二、系统功能介绍 用户信息管理 作品分类管理 轮播图管理 摄影作品管理 摄影作品收藏 摄影圈 摄影作品发布 三、核心代码 1、登录模块 2、文件上传模块 3、代码封装 前言 随着信息技术在管理上越来越深入而广泛的应用&#xff0c;管理信息系统…

TCP/IP(五)TCP的连接管理(二)三次握手细节

一 ISN序列号探究 本文主要探究三次握手建立TCP连接的细节备注&#xff1a; 某些问题探究的比较深入,当前用不到,暂时通过链接引入进来吃水不忘挖井人&#xff1a; 小林 coding ① 初始序列号 ISN 是如何随机产生的 ISN: 初始化序列号 Initial Sequence Number 接收方和…

Web1.0——Web2.0时代——Web3.0

Web1.0 Web1.0是互联网的早期阶段&#xff0c;也被称为个人电脑时代的互联网。在这个阶段&#xff0c;用户主要通过web浏览器从门户网站单向获取内容&#xff0c;进行浏览和搜索等操作。在这个时代&#xff0c;技术创新主导模式、基于点击流量的盈利共通点、门户合流、明晰的主…

ad5665r STM32 GD32 IIC驱动设计

本文涉及文档工程代码&#xff0c;下载地址如下 ad5665rSTM32GD32IIC驱动设计,驱动程序在AD公司提供例程上修改得到,IO模拟的方式进行IIC通信资源-CSDN文库 硬件设计 MCU采用STM32或者GD32,GD32基本上和STM32一样,针对ad566r的IIC时序操作是完全相同的. 原理图设计如下 与MC…

React组件

一、React组件 函数组件 // 函数组件 // 组件的名称必须首字母大写 // 函数组件必须有返回值 如果不需要渲染任何内容&#xff0c;则返回 null function HelloFn () {return <div>这是我的第一个函数组件!</div> }// 定义类组件 function App () {return (<di…