verypdf blog

PCL to PDF converter

Hello,
 
I sent you an email earlier about having problems with converting symbols.  I think we have gotten around that, however, I have a couple more questions.
 
1.  It seems to be reducing the size just a little bit when we print the converted PDF file.  Is that because of your watermark?  If so, will it generate a PDF file that prints the form the same size once we register the product?
 
2.  There are some areas that are shaded in the PCL file.  When I copy the PCL file to the printer, it looks fine.  However, in the converted PDF file, the shaded area turns into large dots which make the text within the shaded area unreadable.  Is there a way around this?
 
I can email you sample files if you want them.
=========================

Can you please email to us your sample PCL file in question? After we checked your sample PCL file, we will figure out a solution to you asap.

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)
verypdf blog

What is the difference between getting the command line or SDK/COM version

Hi, I am very much interested in your product.  I am a developer for an internet startup and would be interested in getting a license, however, before I go ahead and do that, I need some clarification about a few things:

1. What is the difference between getting the command line or SDK/COM version?
2. Do you support Linux?
=================================
>>1. What is the difference between getting the command line or SDK/COM version?

Command Line can be called by CreateProcess() function, you can run it by manual too.

SDK/COM can't be run by manual in CMD window, you can only call it from your code directly.
>>2. Do you support Linux?

It is depend on what product that you want to purchase, we will release a Linux version of HTML to PDF Converter within a few months, our other products are not support Linux yet.

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)
html print

HTML Print product

I've purchased VeryDOC HTMLPrint. With Windows XP works perfectly, but
with Windows 7 can't change paper orientation to landscape, always
prints in portrait mode.
My system: Windows 7 Home Premium, Internet Explorer 9, printer Canon
iP4200 connected via home network.
===========================
Please by following solutions to try again,

1. Please run htmlprint.exe with administrator right,
2. Please give Full Control permission to Everyone user account to your target printer,

We hoping above two solutions will helpful to you, please give them a try.

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)
advanced pdf tools, pdf split-merge

Merge pdf by Advanced PDF Tools

Re Advanced PDF Tools Command Line:

The description says that one may merge pdf files.  I do not see a merge command.

The closest i see is:

Insert pages to PDF file

-* 
pdftools  -i "C:\input.pdf" -o "C:\output.pdf" "-*" "2|0|d:\pdf1.pdf/1,2-4,9|d:\pdf2.pdf/1,3"  

So, say I want to combined:

1.pdf, 2. pdf, 3.pdf, and 4.pdf into output.pdf

Is this the command?

pdftools  -i "C:\1.pdf" -o "C:\output.pdf" "-*" "2.pdf, 3. pdf, 4.pdf"  

Thanks
==========================
You can run following command line to try again,

pdftools  -i "C:\1.pdf" -o "C:\output.pdf" "-*" " 2|0|2.pdf|3. Pdf|4.pdf" 

if you still can't get it work, we suggest you may download PDF Split-Merge Command Line Version 3.0 from following web page to try, we hoping PDF Split-Merge Command Line Version 3.0 will work better for you,

https://www.verypdf.com/pdfpg/index.html#dl

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)
pdf parser & modify sdk, pdf to text converter

I have a question for PDF2TXT COM for Table Analyzer version.

Hi
Thanks for good software.
I tested the PDF2TXT COM for Table Analyzer version.
I have a question.
How to use charmap.txt?
I will make software  to support CJK unicode.
I want sample charmap.txt or language pack.
Thank youe for read
=============================
"charmap.txt"  is used to map some special Unicode characters to ANSI code.

Also, "charmap.txt" doesn't support CJK Unicode, if you wish convert CJK characters from PDF file to text file, you need download "PDF2TXT SDK" from following web page,

https://www.verypdf.com/pdf2txt/pdf2txt.htm#dl
https://www.verypdf.com/pdf2txt/sdk/pdf2txt_trial_version.zip

you can call PDF2TXTEx() function from PDF2TXT SDK product, PDF2TXTEx() function can convert CJK characters from PDF file to text file properly.

VeryPDF
=============================
Thanks for answer

I have to explain again that I hope to ask you.
I tested two version(PDF2TXT  and PDF2TXT COM for Table Analyzer) both.

But, 'PDF2TXT COM for Table Analyzer' is not supported CJK unicode.

I need word position(left, top, width, height) for extracts text.

If PDF2TXT SDK is supported word position, I will be buy it.

Thanks you.
=============================
We suggest you may download and purchase PDF Parser SDK from following web page,

http://www.verydoc.com/pdfparsersdk.html

http://www.verydoc.com/pdfparsersdk.zip

PDF Parser SDK can extract text with positions and other information, it can also render PDF pages to image files, it has more functions than PDF2TXT SDK and 'PDF2TXT COM for Table Analyzer', we hoping this product will work fine to you.

Also, PDF Parser SDK does support CJK PDF files, if you encounter a PDF file that can't be render or parse by PDF Parser SDK, please email that PDF file to us, after we checked that PDF file, we will figure out a solution to you asap.

VeryPDF
=============================
Thank you for quick response.
I think the product, pdfparsersdk is for me.
I appologize I got more questions.
 
  1) When the extract using pdfparsersdk, Could I separate image and text each other?
      ( I got the result that is not separated. )
 
  2) When the extract using pdfparsersdk, Could I set up the size of image?
      ( I want set the size of images like this [width = 1000px] )
Thank you.

=============================
Hi,

>>  1) When the extract using pdfparsersdk, Could I separate image and text each other?
>>      ( I got the result that is not separated. )

Please refer to following sample code, you can call PDFParserSDK_GetImageData() function to get image data, and call PDFParserSDK_GetTextInfoData() to get the text data, you can separate them easily,
int Test_PDFParserSDK_3(char *pdf_filename, char *out_filename)
{
       int nRet = 0;
       HANDLE hPDFSDK = PDFParserSDK_GetHandle(pdf_filename, NULL);
       if(hPDFSDK == NULL)
              return nRet;
       int nCount = PDFParserSDK_GetCount(hPDFSDK);
       for(int i = 0; i < nCount; i++)
       {
              int nImageDataLen = PDFParserSDK_GetImageLength(hPDFSDK, i);
              int nTextInfoLen = PDFParserSDK_GetTextInfoLength(hPDFSDK, i);
              vector<BYTE> vecImgData;
              vector<BYTE> vecTxtData;
              vecImgData.resize(nImageDataLen);
              vecTxtData.resize(nTextInfoLen);
              PDFParserSDK_GetImageData(hPDFSDK, i, vecImgData.begin(), vecImgData.size());
              PDFParserSDK_GetTextInfoData(hPDFSDK, i, vecTxtData.begin(), vecTxtData.size());
       }
       PDFParserSDK_Free(hPDFSDK);
       hPDFSDK = NULL;
       return nRet;

>>  2) When the extract using pdfparsersdk, Could I set up the size of image?
>>      ( I want set the size of images like this [width = 1000px] )

You can’t set the size of image, but you can set the DPI to image, the DPI will affect the image’s size, e.g.,

-r <int>           : resolution for both X and Y, in DPI (default is 150)
int Test_PDFParserSDK_3(char *pdf_filename, char *out_filename)
{
       int nRet = 0;
       HANDLE hPDFSDK = PDFParserSDK_GetHandle(pdf_filename, "-r 150");
       if(hPDFSDK == NULL)
              return nRet;
       int nCount = PDFParserSDK_GetCount(hPDFSDK);
       for(int i = 0; i < nCount; i++)
       {
              int nImageDataLen = PDFParserSDK_GetImageLength(hPDFSDK, i);
              int nTextInfoLen = PDFParserSDK_GetTextInfoLength(hPDFSDK, i);
              vector<BYTE> vecImgData;
              vector<BYTE> vecTxtData;
              vecImgData.resize(nImageDataLen);
              vecTxtData.resize(nTextInfoLen);
              PDFParserSDK_GetImageData(hPDFSDK, i, vecImgData.begin(), vecImgData.size());
              PDFParserSDK_GetTextInfoData(hPDFSDK, i, vecTxtData.begin(), vecTxtData.size());
       }
       PDFParserSDK_Free(hPDFSDK);
       hPDFSDK = NULL;
       return nRet;

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)