c++ PDFium pdf转为图片(实例)

接上次的使用方法,这里做一个特别简单的小例子,不再在网上下载一个有时候还收费,并且转换速度特别快,满足与自己日常使用:

打开文件操作:

CFileDialog pCFileDialog(TRUE);
    pCFileDialog.m_ofn.lpstrTitle = L"打开文件 ";
    if (pCFileDialog.DoModal() != IDOK)
    {
        return;
    }
    CString strPath = pCFileDialog.GetPathName();

    GetDlgItem(IDC_EDIT1)->SetWindowText(strPath);

c++ PDFium pdf转为图片(实例)_第1张图片

 c++ PDFium pdf转为图片(实例)_第2张图片

 c++ PDFium pdf转为图片(实例)_第3张图片

你可能感兴趣的:(c++,MFC,pdf,pdf转图片)