1. 程式人生 > >QT 開啟PDF檔案或圖片檔案

QT 開啟PDF檔案或圖片檔案

//開啟PDF檔案

QString qtManulFile=“XXXX.pdf”;

QDesktopServices::openUrl(QUrl::fromLocalFile(qtManulFile));

//開啟圖片檔案

QString qtImagelFile=“XXXX.png”;

QDesktopServices::openUrl(QUrl::fromLocalFile(qtImagelFile));

只要你計算機安裝了相應的開啟軟體,一行程式碼就OK(QDesktopServices::openUrl(QUrl::fromLocalFile(XXX));)