Qt pdf文件转换操作

qt文件转换操作,包括word转为pdf;Excel转为pdf;PPT转为pdf;image转为pdf;pdf转为文本文件;pdf导出图片;接口如下所示:

#pragma once

#include <QObject>

#include "filetransformhandle_global.h"

enum FileTransformType

{

fttNone = 0,

fttWordToPdf = 1, //word转为pdf

fttExcelToPdf = 2, //Excel转为pdf

fttPPTToPdf = 3, //PPT转为pdf

fttImageToPdf = 4, //image转为pdf

fttpdfToText = 5, //提取pdf文本

fttpdfToImage = 6, //pdf导出图片 strDesFilePath:表示导出的文件夹

fttcmdpdfToText = 7, // 命令行提取pdf的文本

fttcmdpdfToHtml = 8, // 命令行提取pdf到html

fttDirImageToPdf = 9, // 多个image转为pdf strSourceFilePath:表示文件夹

};

class FILETRANSFORMHANDLE_EXPORT FileTrasformOperatorHandle : public QObject

{

Q_OBJECT

public:

FileTrasformOperatorHandle();

FileTrasformOperatorHandle(const QString& strSourceFilePath, const QString& strDesFilePath);

void setTransformType(FileTransformType eTransformType);

void setSourceFilePath(const QString& strSourceFilePath);

void setTargetFilePath(const QString& strDesFilePath);

void run();

bool runCommand(const QString& strParam);

private:

void _run(const QString& strParam);

signals:

void startTransform(const QString& pdfFilePath);

void finished(const QString& pdfFilePath);

private:

QString m_strSourceFilePath; // 源文件

QString m_strDesFilePath; // 目的文件

FileTransformType m_eTransformType; // 转换类型

};

相关推荐
CoderIsArt6 小时前
QT中已知4个坐标位置求倾斜平面与倾斜角度
qt·平面
__lost8 小时前
Pysides6 Python3.10 Qt 画一个时钟
python·qt
胡斌附体9 小时前
qt socket编程正确重启tcpServer的姿势
开发语言·c++·qt·socket编程
冷凝女子9 小时前
【QT】获取文件路径中的文件名,去掉后缀,然后提取文件名中的数字
开发语言·数据库·qt
孤独得猿10 小时前
Qt常用控件第一部分
服务器·开发语言·qt
強云16 小时前
界面架构- MVP(Qt)
qt·架构
嘤国大力士1 天前
C++11&QT复习 (七)
java·c++·qt
嘤国大力士1 天前
C++11&QT复习 (十一)
开发语言·c++·qt
wkm9561 天前
qt.qpa.xcb: could not connect to display解决方法
开发语言·qt·ubuntu
追烽少年x1 天前
在Qt中直接在构建目录下直接运行.exe文件报错问题分析
qt