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


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

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

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

image
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

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 printer

VeryDOC ImagePrinter is the most complete solution for conversion of any documents into: JPEG, JP2000, PNG, GIF, TIFF, BMP, SWF, RTF, XLS, PDF, DjVu or HTML formats

VeryDOC ImagePrinter is the most complete solution for conversion of any documents into: JPEG, JP2000, PNG, GIF, TIFF, BMP, SWF, RTF, XLS, PDF, DjVu or HTML formats. A variety of configuration options, such as page size, image quality, watermarks, thumbnails, and image rotation, allow you to customize the output files to suit your needs. Support for advanced PDF options, including password protection, 128 bit encryption and PDF/A format is also included.

https://www.verydoc.com/app/docPrint/index.html
http://www.verypdf.com/artprint/docprint_setup.exe

VeryDOC ImagePrinter works with any Windows applications and enables you to convert any documents. You can use VeryDOC ImagePrinter to convert your PDFs, MS Office documents, and web pages into portable print-ready image formats like TIFF or PNG.

VeryDOC ImagePrinter seamlessly and automatically integrates into all of your Windows applications that offer printing options, including MS Office, web browsers, email clients, and text editors.

image

Converted files can be sent via email, or delivered via HTTP or FTP servers.

VeryDOC ImagePrinter – Features

  • Print to PDF from any Windows program.
  • Runs on Microsoft Windows XP(SP 2)/ 2003/ Vista/ 2008/ Windows 7, 8 and Windows 10.
  • Supports 32-bit and 64-bit operating systems.
  • Graphical user interface.
  • Password protect PDF documents 128 bit PDF encryption.
  • Custom page size.
  • Quality settings.
  • Send generated files via E-Mail.
  • Set document properties.
  • User interface control.
  • Support for Citrix MetaFrame.
  • Support for Windows Terminal Server.
  • Share a VeryDOC ImagePrinter for Network Users.
  • Multiple output types supported: JPEG, JPEG 2000, PNG, GIF, TIFF, BMP, SWF, RTF, XLS, PDF, DjVu or HTML.
  • Small, agile, and easy-to-use virtual printer with intuitive user experience.
  • Automatic integration into OS and applications.
  • Full support of all basic image formats like BMP, PNG, JPG, TIFF, and GIF with color adjusting.
  • Flexible settings for printing into PDF, HTML, DjVu, Shockwave Flash, Rich Text Format, and MS Excel spreadsheet.
  • Watermarks and thumbnails for print-ready documents.
  • Three delivery options: via e-mail, HTTP, or FTP server.
  • Settings only for the current user or for all users.
  • Free updates and technical support for 1 year.

Print to File formats:

  • Print to BMP (Microsoft Windows Bitmap)
  • Print to PNG (Portable Network Graphic Format)
  • Print to JPG (JPEG File Interchange Format)
  • Print to JPEG 2000 (JPEG2000 File Interchange Format)
  • Print to TIFF (Tag Image File Format)
  • Print to GIF (Graphics Interchange Format )
  • Print to SWF (Shockwave Flash)
  • Print to RTF (Rich Text Format)
  • Print to PDF (Adobe Portable Data Format)
  • Print to DjVu (Pronounced like déjà vu)
  • Print to XLS (MS Office Excel)
  • Print to HTML (HyperText Markup Language)

More Conversion Options:

Convert Word to JPG or PDF:
You can easy convert any Word (Microsoft Office Word) document to JPG or PDF format.

Send file using FTP or TCP:
When this option is enabled, the resulting file(s) will be automatically uploaded to your server after the printing process finishes using the FTP or TCP protocol.

Image Processing Options:

  • Thumbnails images
  • Watermark function
  • Rotate image
  • Anti aliasing filter
  • Re-sample images
  • Crop images

If you have any question, please feel free contact us, we will assist you asap,

http://support.verypdf.com/

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

doc2any convert html to tiff. Is there a switch to create a multipage tiff images from html?

Is there a switch to create a multipage tiff images from html currently I'm using "c:\doc2any\doc2any.exe -useoffice 1 -multipagetif -xres 300 -yres 300 -compression 32773 "{0}" "{1}

but it doesn't split the page I just get one very long image. any ideas?

Customer
------------------------------------
Thanks for your message, you may add "-useprinter" parameter to try again, for example,

doc2any.exe -useoffice 1 -useprinter -multipagetif -xres 300 -yres 300 -compression 32773 D:\downloads\YZGZSQB.doc D:\downloads\_out.tif

doc2any.exe -useoffice 1 -useprinter -multipagetif -xres 300 -yres 300 -compression 32773 D:\downloads\YZGZSQB.html D:\downloads\_out.tif

You can use above command line to convert Office and HTML files to multi-page TIFF file.

Please notice, above command lines are using MS Office to render Office and HTML files to TIFF files, MS Office may load your HTML files slowly.

You can also use "HTMLPrint to Any Converter Command Line" to convert HTML files to multi-page TIFF file, "HTMLPrint to Any Converter Command Line" can be downloaded from this web page,

https://www.verydoc.com/htmlprint-to-any.html
https://www.verydoc.com/htmlprint2any_cmd.zip

after you download it, you can run following command lines to convert from HTML files to multi-page TIFF and PDF files,

html2any.exe -printtopdf C:\out.pdf http://www.verypdf.com
html2any.exe -printtopdf C:\out.pdf -ps2pdfopt "-ownerpwd owner -keylen 2 -encryption 3900" http://www.verypdf.com
html2any.exe -printtopdf C:\out.pdf -ps2pdfopt "-subject \"subject\" -creator \"creator\"" http://www.verypdf.com
html2any.exe -printtopdf C:\out.pdf -ps2pdfopt "-$ XXXXXXXXXXXX" http://www.verypdf.com

html2any.exe -printtoimage C:\out.jpg http://www.verypdf.com
html2any.exe -printtoimage C:\out.png -imgw 800 -imgh 1000 http://www.verypdf.com
html2any.exe -printtoimage C:\out.gif -imgxres 300 -imgyres 300 http://www.verypdf.com
html2any.exe -printtoimage C:\out.png -imgbc 1 http://www.verypdf.com
html2any.exe -printtoimage C:\out.tif -multipage -imgbc 24 http://www.verypdf.com
html2any.exe -printtoimage C:\out.tif -multipage -imgbc 24 -compress 5 http://www.verypdf.com
html2any.exe -printtoimage C:\out.tif -multipage -imgbc 1 -compress 4 http://www.verypdf.com
html2any.exe -printtoimage C:\out.tif -multipage -imgbc 24 -compress 32773 http://www.verypdf.com
html2any.exe -printtoimage C:\out.tif -multipage -imgbc 1 -compress 88881 http://www.verypdf.com
html2any.exe -printtoimage C:\out.jpg -quality 50 http://www.verypdf.com
html2any.exe -printtoimage C:\out.jpg -rotate 90 http://www.verypdf.com
html2any.exe -printtoimage C:\out.tif -multipage http://www.verypdf.com
html2any.exe -printtoimage C:\out.jpg -gray http://www.verypdf.com

If you encounter any problem with html2any.exe software, please feel free to let us know, we will 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)
postscript to image converter, postscript to pdf converter, postscript to text converter

PDF and PostScript Conversion SDK, SDK Converts PDF and PostScript to Vector and Image Formats

Relevant Software,

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

Use our PDF and PostScript Conversion SDK to convert, import, save, view, display, create, edit, merge, mark, annotate or export PDF pages. It generates industry-standard vector and image formats. It's also ideal for searching pages or filling-in PDF forms.  No matter what you need to do, using the SDK will enable you to seamlessly support PDF or PostScript in your project.

VeryDOC PDF and PostScript Conversion SDK is multi-platform, running on Windows, Linux and Mac OS X, and ideal for everything from enterprise and cloud-based applications, services and workflows to desktop or mobile applications. It is powered without printer drivers and depends only on our own proven, robust and standards-compliant conversion engine. Now, you can flexibly implement and develop powerful conversion solutions that are fully compatible with the latest PDF specifications. This guarantees high-performance, scalability, and optimized page processing.

If the software you are writing needs to support the Adobe Portable Document Format (PDF) or PostScript for either input or output, then the SDK is the ideal solution for you. The SDK can be integrated into either a client or server environment with just two API calls. If needed, it can also be accessed via command-line. It couldn't be easier – or more powerful and accurate. You can depend on the mature and proven libraries which are used in many of today's leading applications and relied on by OEM's, enterprises and government organizations worldwide.

Sample code is provided to ensure a quick start. SDK contains native C/C++ API’s with interfaces for Java and .Net API’s. No Adobe or third party software is required to use the SDK!

If you have any question, please feel free contact us, we will assist you asap,

http://support.verypdf.com/

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