doc to any converter

doc2any -nooffice for PPTX to PDF does not work

Hello,

I have the following problem when trying to convert PPTX to PDF. Can you please check ? The CMD is already running with admin privilege,

D:\doc2any\doc2any_cmd>doc2any.exe -nooffice d:\test.pptx d:\test.pdf
Thank you for choosing "VeryDOC DOC to Any Converter Command Line" product.
[FAILED] Can't create an instance for PowerPoint.Application.
Prepare to convert "d:\test.pptx" file...[10%]
[FAILED] Can't create an instance for PowerPoint.Application.
[FAILED] Can't locate EMF files.
[Message] Conversion time = 0ms
[Message] "d:\test.pptx" ==> "d:\test.pdf", result=ERROR
[Warning] If the conversion is fail, it may caused by permission problem, please run a CMD window by administrator privilege, and run same command line to try again. doc2any.exe is only require administrator privilege at first time when you run it.
TickCount = 0ms(0.00s), Result = 0

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

image

We apologize for any inconvenience this may have caused to you, "-nooffice" parameter doesn't support .PPTX format, you need to remove "-nooffice" parameter if you want to convert from PPTX documents to PDF files, for example,

doc2any.exe d:\test.pptx d:\test.pdf
doc2any.exe -useoffice 1 -useprinter "D:\in.pptx" "D:\out.pdf"
doc2any.exe -useoffice 1 "D:\in.pptx" "D:\out.pdf"

Please notice, you need to install MS Office software into your system in order to convert from PPTX documents to PDF files properly, doc2any.exe supports MS Office 2003, 2007, 2010 and later versions.

If you haven't MS Office software, you can also install OpenOffice software to your system, then you can run following command line to convert from PPTX documents to PDF files properly,

Convert documents to PDF and other formats using OpenOffice ONLY (ignore MS Office):

doc2any.exe -useopenoffice "C:\test.doc" "C:\out.pdf"
doc2any.exe -useopenoffice "C:\test.docx" "C:\out.pdf"
doc2any.exe -useopenoffice "C:\test.xls" "C:\out.pdf"
doc2any.exe -useopenoffice "C:\test.xlsx" "C:\out.pdf"
doc2any.exe -useopenoffice "C:\test.ppt" "C:\out.pdf"
doc2any.exe -useopenoffice "C:\test.pptx" "C:\out.pdf"
doc2any.exe -useopenoffice "C:\test.doc" "C:\out.html"
doc2any.exe -useopenoffice "C:\test.docx" "C:\out.html"
doc2any.exe -useopenoffice "C:\test.xls" "C:\out.html"
doc2any.exe -useopenoffice "C:\test.xlsx" "C:\out.html"
doc2any.exe -useopenoffice "C:\test.ppt" "C:\out.html"
doc2any.exe -useopenoffice "C:\test.pptx" "C:\out.html"
doc2any.exe -useopenoffice "C:\test.docx" "C:\out.doc"

VeryDOC

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
postscript to pdf converter

I need a script or command line to batch convert one complete folder of Postscript files to PDF files

Dear Team,

I need a support for writing a script that I want to convert whole folder PS files to Next folder In PDF.

I mean I want to put files PS files in A folder I want to get the out of it in PDF in B folder.

Also whenever I put p files in PS in (A) folder automatically it will convert into pdf In B folder.

Although I am able to convert file single ps file to single pdf file with the script below-

..\bin\ps2pdf.exe ..\PSFiles\1.ps ..\PDFfiles\1.pdf

Looking for revert soon.

Customer
------------------------------------------
Postscript to PDF Converter Command Line

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

image
Thanks for your message, you can use DOS batch command to convert all Postscript files in a folder and its sub-folders to PDF files easily, please find the example command lines at below.

//You can use following one command line to batch convert all of your files at one time easily,

-- Convert all Postscript files to PDF files from D:\temp folder to D:\temp folder,

for %F in (D:\temp\*.ps) do "C:\VeryPDF\ps2pdf.exe" "%F" "%~dpnF.pdf"

-- Convert all Postscript files to PDF files from D:\temp folder to D:\output folder,

for %F in (D:\temp\*.ps) do "C:\VeryPDF\ps2pdf.exe" "%F" "D:\output\%~nF.pdf"

-- Convert all Postscript files to PDF files in D:\temp folder and sub-folders (recursion), the output PDF files will be placed to the same folder with original Postscript files, for example,
D:\temp\001.ps => D:\temp\001.pdf
D:\temp\1\001.ps => D:\temp\1\001.pdf
D:\temp\2\001.ps => D:\temp\2\001.pdf

for /r D:\temp %F in (*.ps) do "C:\VeryPDF\ps2pdf.exe" "%F" "%~dpnF.pdf"

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

for %%F in (D:\temp\*.ps) do "C:\VeryPDF\ps2pdf.exe" "%%F" "%%~nF.pdf"

for %%F in (D:\temp\*.ps) do "C:\VeryPDF\ps2pdf.exe" "%%F" "D:\output\%%~nF.pdf"

for /r D:\temp %%F in (*.ps) do "C:\VeryPDF\ps2pdf.exe" "%%F" "%%~dpnF.pdf"

If you want to monitor a folder and its sub-folders for incoming Postscript files, convert these new Postscript files to PDF files automatically, you may try the "PHP Folder Watcher" script, you can use "PHP Folder Watcher" script to convert all PS files in a folder and its sub-folders to PDF files easily,

https://veryutils.com/php-folder-watcher

VeryDOC

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 pdf/a converter

VeryDOC PDF to PDF/A Converter Command Line is a PDF/A validation and conversion software

VeryDOC PDF to PDF/A Converter Command Line is a PDF/A (ISO 19005-1) validation and conversion software, it is a command-line tool, you can call it from your scripts or applications or run it by manual, you can also call it from Windows Services or Web site applications.

image

VeryDOC PDF to PDF/A Converter Command Line analyses the content of existing PDF files and performs a sequence of modifications in order to produce a PDF/A compliant document. Features that are not suitable for long-term archiving (such as encryption, obsolete compression schemes, missing fonts, or device-dependent color) are replaced with their PDF/A compliant equivalents. Because the conversion process applies only necessary changes to the source file, the information loss is minimal.

VeryDOC PDF to PDF/A Converter Command Line does not rely on other third-party software. VeryDOC PDF to PDF/A Converter Command Line can be used in server environments or as a batch conversion process.

You can download a trial version of VeryDOC PDF to PDF/A Converter Command Line from following web page,

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

https://veryutils.com/pdf-to-pdf-a-converter-command-line

If you encounter any problem with this software, please feel free to let us know, we will assist you asap.

PDF2PDFA-CL is a command-line application based on our PDF/A converter component and serves to convert PDF files to the PDF/A-1b, PDF/A-2b, PDF/A-3b etc. formats.

VeryDOC PDF to PDF/A Converter Command Line highlight features:
* Converts PDF to PDF / A-1b, 2b, 3b, etc. formats.
* Command line application.
* Processes – single files, lists of text files, folders and whole folder structures.
* Only a specified folder or entire subfolder structure can be processed.
* Convert PDF documents to PDF/A-1, PDF/A-2, PDF/A-3.
* Support for all PDF/A conformance levels.
* Make color spaces device-independent, e.g. by embedding ICC profile or setting an output intent.
* Embed and subset fonts.
* Colorants management (PDF/A-2 and later).
* Recover corrupt documents.
* Repair corrupt data such as embedded font programs or images.
* Remove transparency (PDF/A-1 only).
* Remove malicious content such as attached files (PDF/A-1 and PDF/A-2) and JavaScript actions.
* Remove multimedia content such as video and sound.
* Conversion of embedded and attached files (PDF/A-2 and later).
* Repair metadata and make them consistent.
* Read encrypted input files.
* Enhance output file.
* Set metadata.
* Linearization for fast web view.
* Use PDF file compression features (PDF/A-2 and later).

Supported formats:
* Input Formats
*** PDF 1.0 to 1.7
*** PDF 2.0

* Output Formats
*** PDF/A-1a*, PDF/A-1b
*** PDF/A-2a*, PDF/A-2b, PDF/A-2u
*** PDF/A-3a*, PDF/A-3b, PDF/A-3u

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
doc to any converter

How to merge more Excel Spreadsheets into one PDF file?

Hi Support,

Good Day, I try to create a script base on the documentation provide from website to merge 2 excel into one pdf with - E, but failed. Any other solution?

Thanks.

Regards,
Customer
-------------------------------

image
Thanks for your message, you can use VeryDOC DOC to Any Converter Command Line product to merge more of your Excel Spreadsheets into one PDF file, you may download the trial version of VeryDOC DOC to Any Converter Command Line from this web page to try,

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

after you download it, you can run one of following command lines to merge your office documents into one PDF file,

   doc2any.exe -append 2 -width 612 -height 792 C:\*.doc C:\out.pdf
   doc2any.exe -append 2 C:\*.doc C:\out.pdf
   doc2any.exe -append 1 C:\in.doc C:\out.pdf
   doc2any.exe -append 2 C:\in.doc C:\out.pdf

   doc2any.exe -append 2 -width 612 -height 792 C:\*.xls C:\out.pdf
   doc2any.exe -append 2 C:\*.xls C:\out.pdf
   doc2any.exe -append 1 C:\in.xls C:\out.pdf
   doc2any.exe -append 2 C:\in.xls C:\out.pdf

Please find the description for the -append option,

  -append <int>                      : Append document to an existing PDF file
    -append 0: Overwrite if PDF file exists
    -append 1: Insert before first page if PDF file exists
    -append 2: Append to last page if PDF file exists
    -append 3: Rename filename if PDF file exists

VeryDOC

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)
pcl, ps, pdf page counter

Spool File Page Counter SDK – Wrong page analysis

Hi Guys,

We are evaluating the Spool File Page Counter SDK to analyse PDF files and during our testing we seem to have a page reported as BW when its actually colour.

The page in the PDF clearly has blue lines on it. Other colour pages in the document are correctly reported.

Any help would be appreciated, this appears to be a great solution for us but we do need accuracy as well as performance.

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

https://www.verydoc.com/spool-page-count.html

image

Thanks for your sample PDF file, we checked the blue lines in the page 3 in your PDF file, we noticed the line width for those blue lines are too thin, when we scale the page for color checking, those blue lines were disappear, this is the reason of the problem.

Please look at following screenshot, the width of blue lines on page 3 are very thin,

image

We have created a new version of Spool File Page Counter SDK to you, please download the new version from this URL,

XXXXXXXXXXXXXXXXXXXXXXX

The new version of Spool File Page Counter SDK does able to determine page 3 in your PDF file as color page properly, the new version will return following color information for each page in your PDF file,

=============================
Page   1 is [Color]
Page   2 is [   BW]
Page   3 is [Color]
Page   4 is [Color]
Page   5 is [   BW]
Page   6 is [Color]
Page   7 is [Color]
Page   8 is [   BW]
Page   9 is [   BW]
Page  10 is [   BW]
Page  11 is [   BW]
Page  12 is [Color]
Page  13 is [   BW]
Page  14 is [Color]
Page  15 is [   BW]
Page  16 is [   BW]
Page  17 is [Color]
Page  18 is [Color]
Page  19 is [   BW]
Page  20 is [   BW]
Page  21 is [   BW]
Page  22 is [   BW]
Page  23 is [   BW]
=============================

As you see, it shown the page 3 as the color page, because the page 3 contains a blue line.

You may test this version carefully, if you encounter any problem with it, please feel free to let us know, we are glad to assist you asap.

VeryDOC

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