Do you have Postscript Converter?

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

VeryPDF
=========================
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);
}
}

VeryPDF
VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *


Verify Code   If you cannot see the CheckCode image,please refresh the page again!