Dear Ladies and Gents,
I come to you with the following concern. We use your SDK pdf2Image and we are planning to switch our software to 64Bit. Is there any update available with 64Bit support ?
We are using the following versions:
Cimage.dll / V 5.9.9.1
Pdf2Image.dll / V 2.0.0.1
Best regards
Customer
-------------------------------------------
pdf2image.dll is the 32bit DLL Library, you can compile your application with x86 platform mode, then you can call pdf2image.dll from your 32bit EXE application properly.
The latest version of PDF2Image SDK contains a PDF2ImageCOM.exe COM interface, this COM can be called from both 32bit and 64bit EXE applications.
You can download the latest version of PDF2Image SDK from following URL,
https://www.verypdf.com/app/pdf-to-image-converter/try-and-buy.html
https://www.verypdf.com/pdf2tif/pdf2image_sdk_trial.zip
Please by following steps to call PDF2Image SDK (PDF2ImageCOM.exe COM interface) from a 32bit or 64bit EXE application,
1. Please run "64bit-com-install.bat" or following command line to install PDF2ImageCOM.exe into your system first, please notice, you need run it by administrator privilege,
PDF2ImageCOM.exe /regserver
2. You can compile following source code with 64bit compiler to test the PDF to Image Conversion function,
----------------------------
Dim oTest, nPageCount, nPageWidth, nPageHeight
Set oTest = CreateObject("PDF2Image.CPDF2Image")
m_strInputFileName = "C:\test.pdf"
oTest.asp_PDFToImageSetCode("XXXXXXXXXXXXXXXXXXXXXX")
nPageCount = oTest.asp_PDFToImageGetPageCount(m_strInputFileName)
nPageWidth = oTest.asp_PDFToImageGetPageWidth(m_strInputFileName, 1)
nPageHeight = oTest.asp_PDFToImageGetPageHeight(m_strInputFileName, 1)
'Converter PDF file to TIFF file by DPI information
oTest.asp_PDFToImageConverter m_strInputFileName, "C:\example1_tiffpack.tiff", "", "", 300, 300, 24, 32773, 70, 0, 1, -1, -1
oTest.asp_PDFToImageConverter m_strInputFileName, "C:\example1.emf", "", "", 300, 300, 24, 32773, 70, 0, 1, -1, -1
'Converter PDF file to TIFF file by page size information
oTest.asp_PDFToImageConverterEx m_strInputFileName, "C:\example1_tiffpack_page_size.tiff", "", "", 1, nPageWidth, nPageHeight, 24, 32773, 70, 0, 1, -1, -1
MsgBox "Convert Success!"
----------------------------
"PDF2Image.CPDF2Image" is a COM interface which provided by PDF2ImageCOM.exe, you can call it from your 32bit and 64bit applications to convert PDF files to image files easily.
If you wish upgrade to the latest version of PDF2Image SDK product, please send to us your original Order ID, we will send the upgrade web page to you shortly.