DOC to Any Converter

Command Line RTF to PDF Converter

Hello,

I am not sure which of your products would be right for our needs. We have a MS Access based application that creates RTF files that need to be converted to PDF so that they can be sent out via E-mail. The RTF files include non-standard fonts (a barcode font "IDAutomationHC39M Free Version.ttf" that I have attached). I have tried your HTMLTools command line converter which works perfectly except for the barcode font.

Which of your products would be able to convert these RTF files to PDF by a command line or other non-GUI interface that we could call from the Access program.

Thank you,
Customer
------------------------------------------------------
VeryDOC DOC to Any Converter Command Line software will work better for you, it can embed non-standard fonts into PDF file directly, you may download DOC to Any Converter Command Line software from this web page to try,

https://www.verydoc.com/doc-to-any.html
https://www.verydoc.com/doc2any_cmd.zip

VeryDOC
------------------------------------------------------
Thank you for the response. I have downloaded and expanded the zip file,
but when I try to run the exe I get the following error:

"The application has failed to start because cimage.dll was not found.
Re-installing the application may fix this problem."

I have tried to register the cimage.dll file via dragging it to regsvr32.exe
but get an error:

".... \cimage.dll was loaded, but the DllRegisterServer entry point was not
found. This file can not be registered."

Any suggestions?

Thank you,
Customer
------------------------------------------------------
cimage.dll in the "doc2any_cmd" folder also, please look at attached screenshot, can you see it?

Command Line RTF to PDF Converter

btw, you may also download a latest version of doc2any Command Line version from this web page, we hope this version will work fine for you too,

https://www.verydoc.com/doc2any_cmd.zip

VeryDOC
------------------------------------------------------
Well that got me past the cimage.dll problem, but the PDF file says it is corrupt after conversion. I have attached the file to be converted along with the font that is required for the barcode included in the document.

Any suggestions on how to get this working?

Customer
------------------------------------------------------
Please look at following screenshot,

Command Line RTF to PDF Converter

this PDF file was created by following command line,

doc2any.exe D:\downloads\DeliveryDocs.rtf D:\downloads\DeliveryDocs.pdf

the barcode texts are look fine in this PDF file.

I suggest you may run above command line in your system to try again, will you able to get a better PDF file with correct barcodes?

VeryDOC

PDF to PDF/A Converter

I need to convert around 2000 PDF files into PDF/A files, can we batch convert from PDF files to PDF/A files?

Hi Team,

For one of my requirement of pdf to pdf/a conversion, I found your product is very useful.

I have some queries as below:-

1) Instead of converting one by one pdf to pdf/a, can we make it for bulk of pdfs? I need to convert around 2000 PDF files into PDF/A files.

2) If i bought your product, so is there any limit for conversion of pdf files?

Awaiting for your reply.
Thanks,
Customer
----------------------------------------------

I need to convert around 2000 PDF files into PDF/A files, can we batch convert from PDF files to PDF/A files?
>>1) Instead of converting one by one pdf to pdf/a, can we make it for bulk of pdfs? I need to convert around 2000 PDF files into PDF/A files.

Yes, of course, you can convert any number of PDF files to PDF/A files at one time.

The first, you may download VeryDOC PDF to PDF/A Converter Command Line from this web page,

https://www.verydoc.com/pdf-to-pdfa.html
https://www.verydoc.com/pdf2pdfa_cmd.zip

after you download and unzip it to a folder, you may run following command lines to batch convert all of your PDF files to PDF/A files,

#1: Convert all PDF files to PDF/A files in D:\temp folder,

for %F in (D:\temp\*.pdf) do "C:\VeryDOC\pdf2pdfa.exe" -mode 2 "%F" "C:\test\%~nxF.pdf"

#2: Convert all PDF files to PDF/A files in D:\temp folder and sub-folders (recursion),

for /r D:\temp %F in (*.pdf) do "C:\VeryDOC\pdf2pdfa.exe" -mode 2 "%F" "C:\test\%~nxF.pdf"

//You can do same thing in .bat file, but you need use "%%" to instead of "%" in .bat file,

for %%F in (D:\temp\*.pdf) do "C:\VeryDOC\pdf2pdfa.exe" -mode 2 "%%F" "C:\test\%%~nxF.pdf"

for /r D:\temp %%F in (*.pdf) do "C:\VeryDOC\pdf2pdfa.exe" -mode 2 "%%F" "C:\test\%%~nxF.pdf"

>>2) If i bought your product, so is there any limit for conversion of pdf files?

After you bought the VeryDOC PDF to PDF/A Converter Command Line software, you can use it without any restrictions, you can convert any number of PDF files at you want.

VeryDOC

PDF to PDF/A Converter

Converting to PDF/A Format, create and sign a PDF/A from a PDF source

In PDF to PDF/A Converter Command Line tool which is the difference for -mode 0, 1, 2, 4, etc.?

https://www.verydoc.com/pdf-to-pdfa.html

Customer
-------------------------------------
My university requires submitted PDF files to be in PDF/A format.

I tried to find a converter, but they are all very complicated.

How do I convert my existing PDF file into a PDF/A?

Thank you very much!
Customer
-------------------------------------
PDF/A is an international ISO standard for archiving PDFs. The standard requests strict compliance to its set of rules (like: "embed all fonts", "don't use transparencies", "don't use JavaScript", "no encryption",...).

VeryDOC PDF to PDF/A Converter. Convert existing normal or image PDF files into fully searchable ISO 19005-1 and ISO 19005-2 compliant achievable documents.

https://www.verydoc.com/pdf-to-pdfa.html

Converting to PDF/A Format, create and sign a PDF/A from a PDF source

pdf2pdfa.exe supports more modes to convert a normal PDF file to PDF/A file, the -mode 0, 1, 2, 4, etc. modes are using different technologies to convert from a PDF file to PDF/A file, in general, "-mode 2" is best, you can always use "-mode 2" to convert a normal PDF file to PDF/A file.

https://www.verydoc.com/blog/verydoc-releases-new-version-of-pdf-to-pdfa-converter-command-line-product-today.html

You can use "-mode 2" parameter in "VeryDOC PDF to PDF/A Converter Command Line product" to convert normal PDF files to PDF/A files quickly, "-mode 2" parameter will analyze all objects in PDF file, it will check and repair all objects in PDF file and arrange them to comply with the PDF/A compliance, this parameter is great to process various kinds of PDF files over the world, you can use this parameter like below,

pdf2pdfa.exe -mode 2 "sample1.pdf" "_sample1-pdfa.pdf"
pdf2pdfa.exe -mode 2 "sample2.pdf" "_sample2-pdfa.pdf"
pdf2pdfa.exe -mode 2 "sample3.pdf" "_sample3-pdfa.pdf"
pdf2pdfa.exe -mode 2 "sample4.pdf" "_sample4-pdfa.pdf"
pdf2pdfa.exe -mode 2 "sample5.pdf" "_sample5-pdfa.pdf"
pdf2pdfa.exe -mode 2 "sample6.pdf" "_sample6-pdfa.pdf"
pdf2pdfa.exe -mode 2 "sample7.pdf" "_sample7-pdfa.pdf"

"-mode 2" parameter can also keep "searchable ability" in output PDF file, you may give it a try, if you encounter any problem, please send to us your sample PDF file in question, after we checked your PDF file, we will figure out a solution to you asap.

VeryDOC

PDF to Vector Converter

How to call pdf2vec.exe from C# source code to convert from PDF files to SVG files?

Dear Sir or Madam,

I'm writing because I need a software to convert from PDF to SVG, and I found VeryDoc really valuable, especially because I need to call its commands inside a C# .NET project. However I've a problem with registering and using the pdf2vec.dll. I've downloaded EXESHELL and follow the guide, successfully registering the dll. But How am I supposed to use the pdf2vec.exe command and where can I find it?

Thank you in advance.
VeryDOC
----------------------------------------------

How to call pdf2vec.exe from C# source code to convert from PDF files to SVG files?
Thanks for your message, you can download "PDF to Vector Converter Command Line" from this web page,

https://www.verydoc.com/pdf-to-vector.html
https://www.verydoc.com/pdf2vec_cmd.zip

after you download it, you can run following command line to convert from a PDF file to SVG file,

pdf2vec.exe D:\test.pdf D:\out.svg

You can also call pdf2vec.exe from your C# code to convert a PDF file to SVG file easily, for example,

-----------------------------
using System.Diagnostics;

// Prepare the process to run
ProcessStartInfo start = new ProcessStartInfo();
// Enter in the command line arguments, everything you would enter after the executable name itself
start.Arguments = "D:\test.pdf D:\out.svg";
// Enter the executable to run, including the complete path
start.FileName = "D:\VeryPDF\pdf2vec.exe";
// Do you want to show a console window?
start.WindowStyle = ProcessWindowStyle.Hidden;
start.CreateNoWindow = true;
int exitCode;

// Run the external process & wait for it to finish
using (Process proc = Process.Start(start))
{
     proc.WaitForExit();

     // Retrieve the app's exit code
     exitCode = proc.ExitCode;
}
-----------------------------

If you encounter any problem with pdf2vec.exe application, please feel free to let us know.

VeryDOC

DOC to Any Converter

Now a requirement came to add a header/footer along with generated pdf when using VeryDOC Office to PDF Converter

Hi,

We have been using verydoc for office to pdf conversion.
Now a requirement came to add a header/footer along with generated pdf.
Just wondering if this feature already available or not.

Thanks,
Customer
------------------------------------------

Now a requirement came to add a header/footer along with generated pdf when using VeryDOC Office to PDF Converter
Thanks for your message, you can use following options to add header/footer watermark to generated PDF files,

-wtext <string> : Watermark text on printed document
-wtext does support following dynamic values:
%PageCount%, %PageNumber%, %PageCountRoman%, %PageCountRoman2%,
%PageNumberRoman%, %PageNumberRoman2%, %Author%, %Keywords%,
%Subject%, %Title%, %Filename%, %Date%, %Time%
-wtype <int> : type of watermark
0 : normal watermark
1 : watermark on header
2 : watermark on footer
3 : Image Watermark, -wtext is the full path of image file
-wf <string> : font name of watermark
-wh <int> : font size of watermark
-wb : specify bold font
-wi : specify an italic font
-wu : specify an underlined font
-ws : specify a strikeout font
-wa <int> : angle of watermark
-wbox <string> : a rectangle to output formatted text, it is only useful for "-walign" option, eg:
-wbox "0,0,595,842"
-wbox "0,0,612,792"
-wbox "auto"
-walign <int> : set text align
1 : left
2 : center
3 : right
-wc <string> : color of watermark,
FF0000: Red color
00FF00: Green color
0000FF: Blue color
HexNum: Other colors
-wx <int> : X offset of watermark
-wy <int> : Y offset of watermark
-wpagebegin <int> : first page to add the watermark
-wpageend <int> : last page to add the watermark
-wpageoffset <int> : a value to be added to page number
-watermark <string> : Add a Text or Image watermark to PDF pages
-watermark2 <string> : Add a Text or Image watermark to PDF pages
-watermarkfile <string> : a .ini file which contain information for multiple watermarks

for example,

doc2any.exe -wtext "COPY" -wc "EDEDED" -wh 70 -wb -wtype 0 -useprinter -noretry -useoffice 0 "D:\example.rtf" "D:\_example.rtf.pdf"

doc2any.exe -webkit -margin-left 10 -margin-top 20 -margin-right 10 -margin-bottom 30 -header-html "D:\header.html" -footer-html "D:\footer.html" "D:\test-pagebreaks.htm" "D:\_out_test-watermark_with_html.pdf"

doc2any.exe -watermarkfile "D:\watermark2.ini" "D:\example.doc" "D:\_out_watermark_doc2pdf1.pdf"

doc2any.exe -webkit -watermarkfile "D:\watermark2.ini" "D:\test-pagebreaks.htm" "D:\_out_watermark_html2pdf2.pdf"

doc2any.exe -webkit -watermarkfile "D:\watermark3.ini" "D:\test-pagebreaks.htm" "D:\_out_watermark_html2pdf3.pdf"

doc2any.exe -webkit -margin-left 10 -margin-top 20 -margin-right 10 -margin-bottom 30 -watermarkfile "D:\watermark3.ini" "D:\test-pagebreaks.htm" "D:\_out_watermark_html2pdf4.pdf"

doc2any.exe -killoffice 0 -wtext "Copy" -wtype 0 -wh 200 -wc C0C0C0 -wa 45 "D:\example.docx" "D:\example.docx.pdf"

doc2any.exe -watermarkfile "D:\watermark.ini" "D:\example.doc" "D:\_out_7_watermark.pdf"

VeryDOC