pdf to word converter

Do you have PDF to Word DOC, PPT, XLS converter SDK product?

Do you have a COM object that does the *reverse* of Doc Converter COM as described at http://verypdf.com/pdfcamp/doc2pdf_readme.html ?
=======================
Thanks for your message, just for checking, do you wish convert PDF file to DOC, PPT, XLS, etc formats?

VeryPDF
=======================
Yes, that is precisely what I'd like to do. PDF to doc, ppt, xls, rtf, txt, and so on.
=======================
Sorry, we haven’t PDF to DOC, PPT, XLS converter SDK product, however, you can use following products to convert PDF files back to Word, PPT, XLS, etc. formats,

You can use PDF to Word to convert PDF file to RTF, DOC, TXT formats,

https://www.verypdf.com/pdf2word/index.html

you can use  PDF to PowerPoint Converter v2.0 to convert PDF file to PPT document,

https://www.verypdf.com/pdf2ppt/index.html

you can use mini PDF to Excel Converter v2.0 to convert PDF file to Excel document,

http://www.minipdf.com/pdf2excel.htm

we hoping above products will helpful to you.

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 converter (htmltools)

htmltools.exe is skew the result PDF file

A few months ago, we purchased you’re HTMLTools.exe and have been using it to convert HTML->PDF. The tool has worked great for the most part. However, we notice that after some usage, (daily now, as we have grown in size), the application appears to skew the results. I have attached an example HTML.pdf document and the results are squished.  (also see email chain below for a side by side example)

As of yet, our solution has been to restart the server and things reset back to normal.

To give you a little background.. I host a “ConvertFile” web service. Below is the source code we use to use your tool.  Can you let us know if this is a known issue, or if we are using an incorrect switch statement in the command? Or is there an updated version of the software?

We need to find a fix for this, or I am going to need to look for an alternative solution. I would prefer to not have to change my code and just fix what I have built already.

Any advice is appreciated.

Thank you.
=====================
I have tried following command line, it does convert your HTML file to PDF file correctly,

htmltools.exe -nocenter -width 612 -height 792 -emfheight 792 D:\temp\ComplianceEase.html D:\temp\ComplianceEase.html.pdf

please look at attached PDF file, everything is fine in this PDF file.

Just for checking, can you convert your HTML file to PDF file correctly when you run the conversion in CMD window by manual?

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 password remover

HELP I Own PDF Password Remover, File Not Opening

Have gotten a new set of files I need to crack...  Even though I have password (want to be able to save without one),  PDF Password Remover tells me Password is not correct (even though same password opens with Adobe Reader)...
====================
We have checked your PDF file, your PDF file was protected by Adobe DRM technology, our PDF Password Remover can't remove the password from encrypted PDF files which protected by DRM technology, it can only remove the password from PDF files which protected by Acrobat standard encryption technology, please understand this matter.

VeryPDF
====================
You don't know of any other tool that might allow me to remove the DRM?   One you might recommend?
====================
As far as I know, there no product can remove the DRM, DRM is strong enough, however, we will try to develop a screen capture software to capture the Adobe Reader screen directly, this will solve the restrictions in DRM protected PDF file completely.

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)
pdfstamp command line

veryOpen() function can’t opan a PDF file at 700MB

Hi there,

We are again running into issue with stamping large files with your latest tool. Downloaded from the link in your earlier e-mail below.
In our VB6.0 code we are converting the source PDF using PDFTools_ConvertPDFToNewPDFFile() method call and then stamping each page in the PDF with some data.

When we test this functionality with very large PDF files, it appears to be converting the file fine but when we try to open the converted file using veryOpen() method call it does not open just returns a negative return code. Our customer has reported  this with about 700 MB PDF file.

This is an issue in their production environment so needs to be fixed ASAP. Please let us know if you have any solution or an updated version that we can use.

I think my Gold Support and order id are in the subject above.

Please let me know how can we resolve the issue. Unfortunately we cannot send you the PDF file we are testing with since it’s a very sensitive date from our customer and we don’t have access to it.

So if you can give us an updated version that can create some sort of diagnostic logs or some way to let us know why is it failing to open the file that would be great!.

Please let me know if it is possible for you to provide an update.
==================================
We apologize for any inconvenience this may have caused to you, veryOpen() method does load PDF file into memory completely, for a 700MB PDF file, it is need about 1000MB ~ 1400MB memory for stamping, this is indeed a huge memory amount, it may cause memory overflow problem. Is it possible for you to break this large PDF file into smaller PDF files before stamping? You can split this large PDF file to some smaller PDF files at 100MB per PDF file, if so, you can use veryOpen() function to stamp these 100MB PDF files without any problem.

VeryPDF
==================================
We have enough memory to load it even at 1400 MB but the open does now tell it why it can not open it.
That is the largest size we need to open and it is a requirement. We don't have time to break the pdfs up and put them back together again.
The customer wants to open it as one file. Their production system can't process these files and they are quite upset.

What can you do to give us some diagnostics to see what is going wrong?
===============================
Would it be possible for you to create a 64-bit set of pdfstamp libraries? That would get around the memory restrictions?
If we can't fix this we will be forced to use another product.
===============================

Create 64-bit set of pdfstamp libraries is good solution, we will create 64-bit set of pdfstamp libraries in the future.

In the meantime, are you using PDFStamp SDK v2.5 version? If yes, please look at "example_for_vc_unicode" folder in the pdfstamp_sdk_v2.5.zip package, you can use this example to add stamp to your 700MB PDF file,

~~~~~~~~~~~~~~~~~~~~
//Register PDFStamp SDK with your License Key
VeryStampReg ("XXXXXXXXXXXXXXXXXXXXX");

id = PDFStampOpen(szPDFFile);
if (id > 0)
{
for(int i = 1; i <= PDFStampGetPageCount(id); i++)
{
if(PDFStampEditPage(id,i) == 1)
{
long nFont = PDFStampSetFontA(id, "Arial Unicode MS", 0, 12, 1, 39);
PDFStampSetFillColor(id, 0x000000FF);
double dbTextLen = PDFStampGetTextWidthExW(id, (unsigned short *)lpData, nLength/2);
BOOL bRet = PDFStampWriteTextExW(id, 100, 200, (unsigned short *)lpData, nLength/2);
PDFStampEndPage(id);
}
}
PDFStampClose(id, szOutFile);
}
~~~~~~~~~~~~~~~~~~~~

The following functions are new series functions for PDF Stamping, we hoping thise functions will able to stamp your large PDF files properly, you may use them to instead of current stamping functions to try,

PDFStampOpen
PDFStampGetPageCount
PDFStampEditPage
PDFStampSetFontA
PDFStampSetFillColor
PDFStampGetTextWidthExW
PDFStampWriteTextExW
PDFStampEndPage
PDFStampClose

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)
docprint pro

Some Questions to docPrint PDF Driver

Ignore my prior Emails.  Here are my questions and then I'll be ready to purchase shortly:

I have successfully gotten this to work but I have some more questions:

1.  How can I know when a document is done printing and the PDF has been created?  I'm going to want to rename it but I need to know when it is done printing.  Code continues even if I issue a DOEVENTS because it's being sent to the print spooler I think.

2.  Is there a way to set these values without modifying the registry?  I'm wondering what happens on Vista or Windows 7 if the User Access Control is turned on.  Is there a way to modify these HKEY_CURRENT_USER printer settings in a file and have the Very PDF printer use defaults from a file instead of the registry?

3.  How will my client's Very PDF printer know it is not a Trial or does this happen automatically when my program with the SDK registers the printer on their workstation?

4.  If I purchase the SDK then am I able to redistribute to unlimited number of client workstations?

5.  In addition to the four questions below, is there a Help file or documentation on all the registry items or features for the SDK?

6.  How would I use this command and is there documentation or help file for properties and methods:   docPrint = CreateObject("DocPrintCom.docPrint")

7.  I noticed when printing that there's a dialog displayed on the screen showing what page is currently being printed to the PDF printer.  Is there a way to not display this?

8.  Can you provide me the information as to what files I copy to my client test machines which I would provide to clients of mine for the Doc Pro?  I want to test this on my Vista and Windows 7 workstations.

Once I have figured all this out I'm going to buy this SDK and I'll then want to inquire on another one you may have for another project.

Thank you again.
======================================
>>1.  How can I know when a document is done printing and the PDF has been created?
>>I'm going to want to rename it but I need to know when it is done printing.  Code
>>continues even if I issue a DOEVENTS because it's being sent to the print spooler I think.

You can check the value of "PrintingStatus" in registry,

HKEY_CURRENT_USER\Software\verypdf\pdfcamp
PrintingStatus=??

Please refer to the meaning of "PrintingStatus" item at below,

//a. PrintingStatus = 0, idle flag, you can print the document now
//b. PrintingStatus = 1, a document is printing
//c. PrintingStatus = 2, a document is printed successfully (Set after a PDF file is generated successfully)
//d. PrintingStatus = 3, a document failed to be printed. (Error condition, Detailed error message should be written in MessageLog)

After you sent a document to docPrint PDF Driver, you can check the value of " PrintingStatus " in a loop, after " PrintingStatus " is not equal to 1, it is indicate conversion be done completely.

>>2.  Is there a way to set these values without modifying the registry?  I'm wondering >>what happens on Vista or Windows 7 if the User Access Control is turned on.  Is
>>there a way to modify these HKEY_CURRENT_USER printer settings in a file and
>>have the Very PDF printer use defaults from a file instead of the registry?

The current version of docPrint Pro v5.0 is not support configuration file yet, however, it can be done easily to use disk file to instead of registry, after you purchased the product, please email to your Order ID, we will create a new version of docPrint Pro product to you free, we will use disk file to instead of registry in the new version, we hoping this solution will okay to you.

>>3.  How will my client's Very PDF printer know it is not a Trial or does this happen automatically when my program with the SDK registers the printer on their workstation?

After you purchased docPrint SDK product, you will get a license key, please set the license key to " RegisterNO " in registry, docPrint Pro will be registered automatically,

HKEY_CURRENT_USER\Software\verypdf\pdfcamp
RegisterNO="Your License Key"

After we use disk file to instead of registry, you can set the license key value into disk file properly too.

>>4.  If I purchase the SDK then am I able to redistribute to unlimited number of client workstations?

Yes, you are right.

>>5.  In addition to the four questions below, is there a Help file or documentation on all the registry items or features for the SDK?

We haven't a Help file or documentation for all registry items at the moment, we will prepare a document for all registry items shortly, I will send this document to you as soon as it available. In the meantime, if you have any question for the registry items, please feel free to let me know, I will explain it to you asap.

>>6.  How would I use this command and is there documentation or help file for properties and methods:   docPrint = CreateObject("DocPrintCom.docPrint")

You can use docPrint = CreateObject("DocPrintCom.docPrint") from ASP or VB or VB code, please refer to following sample VB code,

~~~~~~~~~~~~~~~~~
Dim sourcePath,destinationPath,exeApp,strCmd,strFolder

sourcePath = "https://www.verypdf.com"
strURL = InputBox("Input a URL or a filename for conversion:", "docPrint Pro", sourcePath)
If strURL = "" Then
WScript.Quit
Else
sourcePath = strURL
End if

Set fso = CreateObject("Scripting.FileSystemObject")
strFolder = fso.GetParentFolderName(wscript.ScriptFullName)

destiantionPath = strFolder & "\verypdf.pdf"

strCmd = " -i """ & sourcePath & """ -o """ & destiantionPath & """ -* XXXXXXXXXXXXXX"

MsgBox strCmd

Set docPrint = CreateObject("DocPrintCom.docPrint")
nRet = docPrint.docPrintCOM_Register("XXXXXXXXXXXXXX", "VeryPDF.com Company")
nRet = docPrint.RunCmd(strCmd, 0)
'MsgBox "Return value = " & Str(nRet)
~~~~~~~~~~~~~~~~~

>>7.  I noticed when printing that there's a dialog displayed on the screen showing
>>what page is currently being printed to the PDF printer.  Is there a way to not display this?

This printing dialog is not shown in our product, it is maybe shown by your XXXX ActiveX control, you need hide this printing dialog from your XXXX ActiveX control.

>>8.  Can you provide me the information as to what files I copy to my client test >>machines which I would provide to clients of mine for the Doc Pro?  I want to test this >>on my Vista and Windows 7 workstations.

You can copy all files in the "C:\Program Files\docPrint Pro v5.0\psdriver" folder and its sub-folders to client's machine.

You can use following solution to Install/Uninstall docPrnt PDF Driver programmatically,

~~~~~
Please go to "C:\Program Files\docPrint Pro v5.0\psdriver" folder, you can run "setup.exe" and "unpdf.exe" to install and uninstall docPrint PDF Driver.
~~~~~

VeryPDF
======================================

VN:F [1.9.20_1166]
Rating: 10.0/10 (1 vote cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)