I wonder if you have the product which can convert various Postscript to Tiff or any other bitmap formats. We currently use your PCL convert and it’s been working great. We would like to use the DLL version.
=========================
Yes, we have Postscript to Image Converter SDK product, you can download and purchase it from following web page,
http://www.verydoc.com/ps-to-image.html
=========================
I notice that there are commandline and COM versions. Do you have pure DLL version? We would prefer not having to register COM on client. We have currently been using PCL to Image converter from VeryPDF which we can make the direct call to DLL. We would prefer doing it the same way.
=========================
Hi,
The COM version is contain a ps2pdfsdk.dll Library, this is a Win32 DLL Library, you needn't register it into your system, you can call it from your code directly, for example,
BOOL ConvertPS2PDF(char *lpCmd)
{
char path[_MAX_PATH];
HINSTANCE hPS2PDF = NULL;
BOOL bRet;
GetModulePath(path,"ps2pdfsdk.dll");
hPS2PDF = LoadLibrary(path);
if(hPS2PDF == NULL)
return FALSE;
VeryPDF_PSToPDF=(VeryPDF_PSToPDFFunc)GetProcAddress(hPS2PDF,"VeryPDF_PSToPDF");
if(VeryPDF_PSToPDF==NULL)
return FALSE;
bRet = VeryPDF_PSToPDF(lpCmd);
FreeLibrary(hPS2PDF);
return bRet;
}
void main(int argc, char *argv[])
{
char *lpszFiles[] = {
"C:\\Test 2 Page.pdf",
"C:\\Test 4 Page.pdf",
"C:\\Test 6 Page.pdf"
};
for(i = 0; i < sizeof(lpszFiles)/sizeof(char*); i++)
{
sprintf(szCommandLine,"ps2pdf -$ \"%s\" -pdf2ps \"",lpLicenseKey);
strcat(szCommandLine, lpszFiles[i]);
strcat(szCommandLine, "\" \"");
strcat(szCommandLine, lpszFiles[i]);
strcat(szCommandLine, ".ps\"");
nRet = ConvertPS2PDF(szCommandLine);
printf("nRet = %d, %s\n", nRet, szCommandLine);
}
}
Related Posts
Related posts:
Ps2txt command line
default file location by ps to pdf converter SDK
Question regarding postscript to ascii
How to use ps2pdfsdk and ps2pdfcom to convert Postscript, PS and EPS files to PDF files from 64bit C...
How to print Postscript files to Windows Printer HP8600 color ink jet?
I am finding a replacement for our current PS and PCL to TIFF conversion tools
How to convert Postscript files to PDF files with OCR function?
How to Convert PostScript Files to PDF and Add Barcodes/QR Codes Using VeryPDF PostScript to PDF Con...