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
RFQ for Postscript to PDF Converter SDK Developer License v2.0
Is Postscript to PDF has an option to select only the portrait pages?
Extract text from PDF file which created by PS To PDF Converter
Is it possible to print or select only the portrait pages from Postscript to PDF file?
How to use ps2pdfsdk from 64bit C# application
Easily convert PCL and Postscript documents to and from multiple file formats for viewing, printing ...
How to convert Postscript files to PDF files with OCR function?