pdf optimizer

When I convert pdf to pdfa the tool delete all the pages in the pdf

okay, here is the next error. When I convert pdf  to pdfa the tool delete all the pages in the pdf, only the first pages remains. Why?
==========================
We apologize for any inconvenience this may have caused to you, can you please email to us the problem PDF file for test purpose? After we checked your PDF file, we will figure out a solution to you asap.

VeryPDF
==========================
here are some problem pdfs. At first there is the file ' Background-Problem-Original', this one has white background, the file ' Background-Problem-Converted' is the converted result with different background color.
The other file ' Deleted-Pages-Original' is a pdf with 13 Pages, as you can see the converted file ' Deleted-Pages-Converted' has only one Page.
==========================
We have solved these problems to you, please download new version from following URL,

XXXXXXXXXXXXXXXXX

please use new version of pdf2pdfa.exe to overwrite old version first, and run pdf2pdfa.exe with -quick parameter, for example,

pdf2pdfa.exe -$ XXXXXXXXXXXXXXXXX -quick D:\temp3\Background-Problem-Original.pdf D:\temp3\Background-Problem-Original_new.pdf

VeryPDF
==========================
Without the cximagecrt.dll the software doesn't works.
You didn't put it in the download package?! What now?

==========================
Sorry for the mistake, because we have lots of update recently, I'm forget include the cximagecrt.dll file, sorry.

Please download an entire packag from following URL to try again,

XXXXXXXXXXXXXXX

VeryPDF
==========================
Well, now it works, but there are now new errors in the pdfs.
Please see the 1650orig.zip (in-files)  & 1650error.zip (out-files).
==========================
We have created a new version to you, please download new version from following URL to try again,

XXXXXXXXXXXXXXXXXXX

VeryPDF
==========================
i'm sorry, but the error is present, nothing changed it.
Here again two pdfs with an open- error.

==========================
The new version of pdf2pdfa_cmd.zip does contain a pdfsdk.dll file, please copy pdfsdk.dll and pdf2pdfa.exe to same folder, then you can run following command line to convert your PDF file to PDF/A file correctly,

pdf2pdfa.exe -quick C:\test.pdf C:\out.pdf

if you haven't pdfsdk.dll file, you can also download it from following URL,

XXXXXXXXXXXXXXX

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 / License is “gone”?

I purchased a license of htmltools late in 2007 (see attachment). After updating the OS on the server, htmltools tells me the license is gone. What should I Do?
========================
thanks for the answer. However, I was not looking for an upgrade – there’s no budget for this. I was just asking how to reapply the license that I got to the software that I got as well. Any thoughts on that?
========================
If you needn’t the upgrade, you can simple copy the old version of htmltools.exe to your new machine, register it by your original license key, then you can use old version of htmltools.exe on your new machine properly.

Please notice, you can’t download the latest version of htmltools.exe from our website, because our website is the Latest version, your old license key is not supported by latest version, please notice this matter.

VeryPDF
========================
thanks, but (I know this is stupid) – how do I re-register it? 😉
========================
You can simple run following command line to register it,

Htmltools.exe -$ XXXXXXXXXXXXXXX

or

Htmltools.exe -$ XXXXXXXXXXXXXXX C:\test.htm C:\out.pdf

Please use your original license key to replace XXXXXXXXXXXXXXX in above command line, then you can register it properly.

Please notice, Please don’t use latest version of htmltools.exe, you need use your purchased version of htmltools.exe application.

VeryPDF
=========================
Great, it worked! Thanks a lot!
=========================
Thank you for your message, if we can be of any other assistance, please feel free to let us know.

Thank you and have a nice day!

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

Error printing with docPrint on Windows Server 2008 x64 R2

artprint.exe is a desktop application, it need to be run in an INTERACTIVE user account, if you run it from a service, it will not able to access to the desktop, so it may cause the problem.

Also, just a question, how do you use the artprint.exe? can you call doc2pdf.exe from your System Service Application correctly?
===================================
Here is a further description of our problems:

- Source code where docPrint_Converter is invoked:

o Importing of docPrintCom.dll:

[DllImport("docPrintCom", CharSet = CharSet.Ansi, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]
private static extern int docPrint_Register(string pOrderID, string pCompanyName);
[DllImport("docPrintCom", CharSet = CharSet.Ansi, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]
private static extern int docPrint_DocumentConverter(string source, string target, string key);

o Invoking the methods:

docPrint_Register("XXXXXXXXXXXXXXXXXXX", "Your Company Name");
docPrint_DocumentConverter(in_FileName, destFileName, "-g 1 -G -e -* XXXXXXXXXXXXXXX");

- Service was tested with [local system account + allow interactive user] and with [Administrator] (could be another user but for testing this account should have all the permissions) account:
o Observations with System account:
* Doc2pdf.exe process is started
* logged in user is prompted to answer a message from a running program
* doc2pdf.exe hangs and with it the service also hangs
* if you click on view the message you get to the “desktop” of  the system account
* Following error message is displayed: "Can’t locate ‘docPrint’ printer on his computer. Would you like to download and install it from our website? Yes/No"
* The System account has print permission for the printer
* Question: How could this problem be solved, so the local system account can find the printer?
o Observations with Administrator account
* doc2pdf.exe process is started by the service
* doc2pdf.exe starts artprint.exe
* artprint.exe seems to fail with following error (from Event Viewer):

Faulting application name: artprint.exe, version: 5.0.0.1, time stamp: 0x4bfbb333
Faulting module name: KERNELBASE.dll, version: 6.1.7600.16385, time stamp: 0x4a5bdbdf
Exception code: 0xe06d7363
Fault offset: 0x0000b727
Faulting process id: 0x768
Faulting application start time: 0x01cc0002e74359a6
Faulting application path: C:\Program Files (x86)\docPrint Pro v5.0\artprint.exe
Faulting module path: C:\Windows\syswow64\KERNELBASE.dll
Report Id: XXXXXXXXXXXXXXX
* doc2pdf.exe quits and the service continues
* Question: Is this the same problem like with the local system account or something different?
- Another possibility would be to run docPrint itself as service and use RunCmd to send options to the service:
o Problem: With the above dll Import there is no access to the RunCmd method.
i.e. following code is not working ("Unable to find entry point named RunCmd in DLL docPrintCom"):

[DllImport("docPrintCom", CharSet = CharSet.Ansi, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)]
private static extern int RunCmd (string cmd, int option);

Greetings,
===================================
Please by following solutions to try again,

Solution 1:

Please delete "-e" parameter from your code,

docPrint_Register("XXXXXXXXXXXXX", "Your Company Name");
docPrint_DocumentConverter(in_FileName, destFileName, "-g 1 -G -* XXXXXXXXXXXXX");

Can you work fine with above code witout "-e"  parameter?

If you wish convert MS Office documents to PDF files or other formats from service user account, you need "Configure Office Applications to Run Under the Interactive User Account", please refer to following web page for more information,

http://www.verydoc.com/others/configure%20office%20applications%20to%20run%20under%20the%20interactive%20user%20account.htm


Solution 2:

You can call RunCmd method by following solution, RunCmd() method is included in "C:\Program Files\docPrint Pro v5.0\docPrintCom.dll" COM component,

Example 6: Run conversion via "docPrint_Service.exe" application,

Please by following steps to run conversion via "docPrint_Service.exe" application,

1. Please login your server via Remote Desktop under Administrator user account (or other user accounts who own Administrator right),

2. Please run "docPrint_Service.exe" application,

"C:\Program Files\docPrint Pro v5.0\docPrint_Service.exe"

3. Call RunCmd() method to deliver a command line to "docPrint_Service.exe" application,

PHP example,

<?php
$com = new COM("DocPrintCom.docPrint");
$com->docPrintCOM_Register("XXXXXXXXXXXXXX","VeryPDF.com Inc.");
$com->RunCmd("-i https://www.verypdf.com -o C:\\test\\output.pdf -* XXXXXXXXXXXXXX -d -O 2 -s ShowHTMLStatusBar=1 -l 10000", 0);
?>

VB example,

Private Sub Command1_Click()
Set docPrint = CreateObject("DocPrintCom.docPrint")
nRet = docPrint.docPrintCOM_Register("XXXXXXXXXXXXXX", "VeryPDF.com Company")
nRet = docPrint.RunCmd("-i https://www.verypdf.com -o C:\output.pdf -* XXXXXXXXXXXXXX -d -O 2 -s ShowHTMLStatusBar=1 -l 10000", 0)
MsgBox "Return value = " & Str(nRet)
End Sub

4. Close Remote Desktop and leave this user logged in.

*Please Notice: After you reboot the server, you need login your server via Remote Desktop with this user account ("docPrint_Service.exe" was installed inside this user account), and close Remote Desktop, leave this user logged in, when you call RunCmd() function, the conversion will be executed from this user account automatically.


If you still have same problem, please feel free contact us, we will assist 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)
html converter (htmltools)

Problems with Htmltools.exe

Dear Sirs,
we use your command line application "Htmltools.exe" for merging PDF files since 2006 without problems; we are very satisfied with.
Since yesterday we have a strange error message while runing the application; the print screen of this error is attached ("PDF merge error.jpg").
We have also noted, that this error occurs only with some PDF files, not with all files. I send to you 2 PDF files, which give this problem.
We tried to install the application on to another server just for testing if the problem is due to local situation (operating system, local running applications, updates, ....), with no chance: the same error appears on the screen. Worse: we have got another more message error, whose print screen is also attached ("System error.gif"). It is in italian; it reads more or less "htmltools.exe, application error. The instruction 0x.... refers to memory 0x.... The memory could not be -read-".

The command we used was:

htmltools -mergepdf "CS1.pdf|CS2.pdf" out.pdf
======================================
we have purchased the last version. Actually the problem is solved.
Thank you very much for the support.
======================================
we have installed the latest version of Htmltools.
We read the created PDF with 2 different programs: Adobe Acrobat and FoxIt. The first usage we have done with Acrobat was successfully.
Yesterday we have used FoxIt for read the created PDF for the first time (we have different programs, some work with Acrobat, others with FoxIt). As you can see (attachment is a print-screen of we see), the page is unreadable...
Do you know this problem? How can we resolve it? We have the latest version of FoxIt, v4.3.1.0118 (2011).
======================================
Can you view this PDF file correctly in Adobe Reader? If yes, it is indicate this is a problem of FoxIt, you can submit this PDF file to FoxIt and ask them to check where is wrong in their FoxIt Reader product, I think they will fix this problem to you quickly.

VeryPDF
======================================
I'm referring to this "old" problem with FoxIt.
We have in the meantime tried with a different reader. With this software the PDF has the same problem noted with FoxIt: the PDF is unreadable. That is: the problem is not with FoxIt specially, but with different PDF readers, supposedly with perhaps the only exception of Adobe Reader. We are therefore convinced that the problem lies more in the new version of Htmltools... (a new symbol table not compatible with all PDF readers...?)
We have additionally noted an important increase of the time in elaboration: the same job that ran with the previous version in 20/25 minutes now run in 140/160 minutes (2 hours and a half!). Do you have idea of the reason?
Thanks for your support
======================================
We apologize for any inconvenience this may have caused to you, we will research this problem shortly, we will try to include a fix for this problem into the next version of our product, we will let you know after the new version is available, thanks for your patience.

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 to image converter, pdf viewer ocx

An affordable PDF viewer ActiveX (capabilities to zoom, print and save PDF files)

Could you please provide me with instructions (or a sample) to create a setup package from VB6 to install our "PDF2Image" application? Thank you in advance.

Regards,
====================================
Please refer to following VB sample code,

Private Sub Command1_Click()
Dim pagecount As Long
Dim strPDFFileName As String
Dim strTIFFFileName As String
Dim strMessage As String
strPDFFileName = "example1.pdf"
strTIFFFileName = "example1_out.jpg"
' Register PDF to Image Converter Library
PDFToImageSetCode "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"

pagecount = PDFToImageGetPageCount(strPDFFileName)
strMessage = strPDFFileName + " PageCount: "
strMessage = strMessage + Str(pagecount)
MsgBox strMessage
result = PDFToImageConverter(strPDFFileName, strTIFFFileName, "", "", 200, 200, 24, COMPRESSION_PACKBITS, 70, False, True, -1, -1)
result = PDFToImageConverter2(strPDFFileName, strTIFFFileName + "_2.tif", "", "", 200, 200, 1, COMPRESSION_PACKBITS, 70, False, True, -1, -1)
End Sub

You can also refer to entire VB example in the “example_vb” folder, if you have any question for this VB project, please feel free to let us know.

VeryPDF
====================================
Thanks for that answer but it wasn't what I expected. What I need to know is how to create a "Setup Package" that includes the "pdf2image.dll" file as part of the "CAB" files. VB6 provides you with a "Package & Deployment wizard" that allows you to include all the ActiveX components of an application. Must probably you have a example or the list of files that should be included in that "distribution package".

Thanks
====================================
Thanks for your message, we haven’t a tool to include PDF2Image.dll into a .cab package, we suggest you may search “cab creator” or “cab maker” in google, you will able to find some tools to create the CAB files.

VeryPDF
====================================
Could you please remind me how it is the installation of the PDF2image zip file in the server?

I'm struggling here with a zip file I downloaded from the website (https://www.verypdf.com/pdf2tif/pdf2image_sdk_trial.zip). The only thing I get is the "pdf2image.dll" (along with all the package). When I copy the file to my server and execute my application, the "pdf2image.dll" file it is not where to found. My VB6 app complains for the file and basically cannot find it. Is it something that I have to specify on the source code line or maybe have to register the .dll file myself? Please advise.
====================================
You can simple copy pdf2image.dll and dependent files to system32 folder or syswow64 folder, then you can call pdf2image.dll from your code to covert PDF files to image files easily.

You can copy pdf2image.dll and depend files to system32 folder or syswow64 folder, then you can call pdf2image.dll from your code to covert PDF files to image files properly.

You can also compile your VB code to EXE first, put this exe to the folder where pdf2image.dll exist, then your EXE can call pdf2image.dll correctly.

VeryPDF
====================================
Good morning.

We're trying to get an affordable pdf viewer ActiveX (with capabilities to zoom, print and save pdf files) and was wondering if your company have one available. It is going to be used on our application server (one).
====================================
Please download PDF Viewer OCX Control from following page to try, this product can be used to view PDF files,

http://www.verydoc.com/pdf-viewer-ocx.html

PDF Viewer OCX Control hasn't print and save PDF functions, if you wish print the PDF files, you can download PDFPrint Command Line product from following page to try,

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

for the Save PDF file function, do you wish modify the PDF file's contents and save to a new PDF file?

You can also download VeryPDF PDF Editor&Viewer OCX Control v2.6 from following page to try, this product can view, print and save PDF files,

https://www.verypdf.com/pdf-editor/index.html

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)