我想使用Qt 4.3.2创建一个带密码的pdf文件,我成功创建了一个pdf文件,但我需要为该文件创建一个密码而且我被困在这里。请帮帮我。
我的代码是
QTextDocument doc;
doc.setHtml("<h1>hello, I'm an head</h1>");
QPrinter printer;
printer.setOutputFileName("E:\\pdf file\\file.pdf");
printer.setOutputFormat(QPrinter::PdfFormat);
doc.print(&printer);
这里我正在创建一个pdf文件,现在我想为该文件创建一个密码 任何帮助表示赞赏,在此先感谢。