doc to any converter

Need recommendations for an ASP.Net compatible HTM to PDF library

Question:I am looking for a library to convert HTML to PDF, including styles. I would prefer it be able to accept a URL as an option, but if required, HTML can be passed in as a stream/byte array with all styles in a single file/buffer. I am using VB / ASP.Net 3.5. I have complete control of the server machine ( I can run as a service, etc... ) however, I cannot require the user to be logged in, so no application level or print driver type solutions please. Is there any solution on VeryDOC?

Answer: According to your needs, you need to convert HTML to PDF by online URL instead of downloading it to local file. And you need to run the conversion from ASP.NET or VB. Meanwhile you do not need to use no application level or print driver type solutions. So I guess maybe you can have a free trial of this software: VeryDOC DOC to Any Converter, by its SDK version, you can use the library to convert HTML to PDF by URL. Meanwhile the SDK version also can help you run the conversion from HTML to PDF together with other programming languages like Visual Basic, C/C++, Delphi, ASP, PHP, C#, .NET, etc. Using the COM object (or DLL Library, or Command Line), file conversions can be done consecutively or simultaneously. Please check more information of this software on homepage, in the following part, I will show you how to use it.

First of all, free trial DOC to Any Converter SDK

  • Download DOC to Any Converter SDK/COM Version. There are two versions for you to choose, developer version and server version. Please choose the proper version according to your needs.
  • When downloading finishes, there will be a zip file. Please extract it to some folder then you can use it normally and find code templates.

Second, convert HTML to PDF from ASP.NET by library.

  • When you need to run the conversion, please refer to the following code template:
  • Please download and install EXEShell COM Library (freeware) and then use following ASP code to run the conversion. <%
        Set comEXEShell = Server.CreateObject("exeshell.shell")
        RootPath = Server.MapPath(".") & "\"
        EXEFile = RootPath & "doc2any\doc2any.exe"
        DOCFile = RootPath & "https://www.verydoc.com/"
        PDFFile = RootPath & "out.pdf"
        strCommandLine = EXEFile & " " & DOCFile & " " & PDFFile
        response.write strCommandLine & "<br>"
        comEXEShell.RunCommandLine "UserName", "Password", strCommandLine
        Set comEXEShell = Nothing
    %>
    ~~~~~~~~~~~~~~~~~
    Remark:
    You may encounter Error 1314 in some Windows systems when you switch between user accounts, this is caused by permission setting, please refer to the steps in #2 to solve the 1314 Error.

By this software, you can convert HTML to PDF from ASP.NET by PDF library. During the using, if you have any question, please contact us as soon as possible.

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 compressor

Fast PDF Compression Library for .NET

Question:I need a fast PDF Compression library for .NET that will allow me to run 10 concurrent threads each compressing a separate PDF file to around 10% of its original size. Any suggestions? (I have already tried out the product from some applications. It is not as fast as I need.) I hope there is solution on VeryDOC?

Answer: According to your needs, maybe you can have a free trial of this software VeryDOC PDF Compressor SDK, by which you can call it from .NET for fast compression. And the compression speed of this software is quite fast. The SDK is available for custom applications (majority of programming languages are supported: C#, C++, Delphi, Visual BASIC, VB.net, etc). Please check more information of this software on homepage, in the following part, I will show you how to use this software.

Download PDF Compressor SDK Developer License

  • Now the developer SDK version downloading link is unavailable. But if you are interested it, please contact us then we will give the trial version link at once.
  • For testing its working ability, you can try the command line version. Here is the download link of command line PDF compressor.

Check what SDK version can do for you also.

  • It can help you create password protected PDF directly after compression.
  • Option to embed font and subset non-embedded fonts to compress PDF.
  • Remove prohibited entries, e.g., JavaScript, Interactive Form etc.
  • Remove unused objects (a garbage collector for PDF files)
  • Allow to email, transmit, download & upload compressed documents quickly & easily.
  • It can help you reduce storage & transmission requirements by more than 10%.
  • When you need, it can help you archive documents with full PDF/A compliance.
  • Compress multiple files or an entire folder of documents, and its subfolders, with a single Command Line Operation.
  • And this is Windows version software, it supports all Window system like 2000/XP/2003/Vista/2008/7, 32bit and 64bit, Windows platforms.
  • This software takes compression method of JBIG2, which provides the best compression solution to compress B/W image files.
  • It is able to enhance PDF compression using the JBIG2Decode filter instead of CCITTFaxDecode, it is support lossless compression.
  • This SDK software can help you compress PDF of scan file type. It can optimize scanned PDF which performs various image clean-up tasks (de-skewing, edge enhancement) and also nicely compresses files.

For now we can not provide code template for .NET and parameters. Please contact us then we will give example and tutorial directly. Meanwhile if you need to know more functions of this SDK version, please contact us as soon as possible.

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

What is a good option for converting Office documents to PDF or image from ASP?

Question:Basically, what i want to know is, is there any better option on VeryDOC than Apache POI to do a conversion of Office documents - docx,doc,xls,xlsx,odt to a PDF format. I have tried all these options, its working fine for smaller and simpler files. If the documents contains fields, objects, tables etc. those are not properly converted. None of these tools forums are active too. If possible we need to do use ASP only. Any one have any better suggestions?

Answer: According to your needs, maybe you can have a free trail of this software VeryDOC DOC to Any Converter, by which you can convert Office documents - docx,doc,xls,xlsx,odt to a PDF format. By this software, you can convert files with complicated objects, tables etc to PDF. And this software allows you to call it from ASP easily. This software allows you to convert all the printable files to PDF to image and set output properties. Please check more information of this software on homepage, in the following part, I will show you how to use this software.

Step 1. Free download DOC to Any Converter SDK/COM Version

  • This COM version allows you to call it together with Visual Basic, C/C++, Delphi, ASP, PHP, C#, .NET, etc.
  • When downloading finishes, there will be a zip file. Please extract it to some folder then you can use it normally.

Step 2. Convert Office to PDF or image through ASP.

  • When you need to convert Office to PDF or image from ASP code, please refer to the following code templates:
  • Please by following steps to call doc2any.exe inside a special user account,
    1. Please download and install EXEShell COM Library (freeware) from following URL first,
    https://www.verydoc.com/exeshell.html
    https://www.verydoc.com/download/exeshell.zip
    2. Please use following ASP code to run the conversion inside a special user account,
    ~~~~~~~~~~~~~~~~~
    <%
        Set comEXEShell = Server.CreateObject("exeshell.shell")
        RootPath = Server.MapPath(".") & "\"
        EXEFile = RootPath & "doc2any\doc2any.exe"
        DOCFile = RootPath & "test.doc"
        PDFFile = RootPath & "out.pdf"
        strCommandLine = EXEFile & " " & DOCFile & " " & PDFFile
        response.write strCommandLine & "<br>"
        comEXEShell.RunCommandLine "UserName", "Password", strCommandLine
        Set comEXEShell = Nothing
    %>
    ~~~~~~~~~~~~~~~~~
    Remark:
    You may encounter Error 1314 in some Windows systems when you switch between user accounts, this is caused by permission setting, please refer to the steps in #2 to solve the 1314 Error.

By above code, we can convert doc to PDF without Office installed. Simply change input file formats then you can convert Office to PDF or image through ASP code. During the using, if you have any question, please contact us as soon as possible.

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

How to convert PDF to DWG without PDF type limitation?

Question:I'm having a hard time converting PDF to DWG for. someone told me that cdr files have embedded bitmap, is there an easy way to convert PDF to corel file? Right now I'm running a really bad solution of, from my application. If anyone have good hands with it please share your idea with me and I hope there is a solution on VeryDOC ?

Answer: According to your needs, maybe you can have a free trial of this software VeryDOC PDF to DWG Converter, by which you can convert various PDF file to DWG. And this application is standalone version, when you run the conversion, you do not need to install CAD and PDF applications. It supports AutoCAD 2008, 2007, 2006, 2005, 2004, 2002, 2000, R14 etc. versions. This powerful program will help you convert your PDF files to usable and editable DWG or DXF files quickly and easily. This software can help you keep PDF font text as searchable and editable text (MTEXT) in DWG or DXF output. Please check more information of this software on homepage, in the following part, I will show you how to use this software.

Step 1. Free download PDF to DWG Converter Command Line

  • This is command line version software, so when downloading finishes, it is a zip file. Please extract it to some folder then you can call this software smoothly.
  • When you use this software, please refer to the usage and example.

Step 2. Convert PDF with embedded bitmap or font to DWG.

  • Here is the usage for your reference:pdf2dwg [options] <pdf-file> [<out-file>]
  • When you use this software, it can overcome embedded bitmap problem, simply run the conversion like the following command line templates:
    pdf2dwg.exe C:\*.pdf C:\*.dwg
    pdf2dwg.exe -ver 16 C:\test.dwg C:\test.dwg
  • -ver <int>  : set output format for DXF and DWG files, it can be selected from following values:
            1: dxf R21 file format (*.dxf)
            2: dxf R18 file format (*.dxf)
            3: dxf R15 file format (*.dxf)

  • By this software, you can also output DXF file. During the conversion, you can use the following parameters:
  • -drawtext <int> : set text conversion mode,
            1: draw text as polygons, convert all text to polygons
            2: convert only non standard characters to polygons
            3: convert text as ASCII text contents in CAD file
        -xscale <fp>    : scale by a factor in x-direction
        -yscale <fp>    : scale by a factor in y-direction
        -page <int>     : extract a specific page: 0 means all pages
        -rotate <int>   : rotate the output document, (0-360)
        -mm             : use mm coordinates instead of points in CAD file
                         (mm=pt/72*25.4)
        -ctl            : map colors to layers

By this software, you can convert PDF with embedded bitmap image to DWG without any problem. During the using, if you have any question, please contact us as soon as possible.

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

How to convert XPS to PDF and encrypt it by 128 bit AES encryption?

       When you need to convert XPS to PDF and encrypt output PDF by 128 bit AES encryption, maybe you can have a free trial of software VeryDOC XPS to PDF Converter, by which you can make it easily. AES has been adopted by the U.S. government and is now used worldwide. AES is a variant of Rijndael which has a fixed block size of 128 bits, and a key size of 128, 192, or 256 bits. AES 128 bit is adopted by Acrobat 7 or higher version.  After encryption, the output PDF will be much more safer to be transferred to your clients, customers or others.

  VeryDOC XPS to PDF Converter is available via an easily integrated COM object (or DLL Library, or Command Line), enabling developers to access the converter via any programming or scripting languages, such as Visual Basic, C/C++, Delphi, ASP, PHP, C#, .NET, etc. So it is quite good for those developers who need to develop some applications based on this one. Please check more information of this software on homepage, in the following part, let us check how to use this software.

Step 1. Free download XPS to PDF Converter Command Line

  • As it is command line version software, we have compressed it to zip file. When downloading finishes, there will be a zip file. Please extract it to some folder then you can use it normally.
  • When you use this software, please read website and readme.txt carefully then you will find that more functions of this software.

Step 2. Convert XPS to PDF and encrypt it by 128-bit AES.

  • When you use this software, please refer to its usage and examples.
  • Here is the usage:xps2pdf [options] <xps-file> [<out-file>]
  • When convert XPS to PDF and encrypt it by 128-bit encryption, please refer to the following command line template and parameters:
    xps2pdf.exe -ownerpwd 123 -keylen 2 -permission 128 C:\in.xps C:\out.pdf
  • -openpwd <string>     : Set 'open password' to PDF file
      -ownerpwd <string>    : Set 'owner password' to PDF file
      -keylen <int>         : Key length (40 or 128 bit)
            -keylen 0:  40 bit RC4 encryption (Acrobat 3 or higher)
            -keylen 1: 128 bit RC4 encryption (Acrobat 5 or higher)
           -keylen 2: 128 bit AES encryption (Acrobat 7 or higher)
      -permission <int>     : Restrictions
            -permission 0  : Deny anything
            -permission 1  : Allowed print the document
            -permission 2  : Allowed modify the content of the document
            -permission 4  : Allowed copy text and graphics from the document
            -permission 8  : Allowed add or modify annotations
            -permission 16 : Allowed fill in interactive form fields
            -permission 32 : Allowed extract text and graphics from the document
            -permission 64 : Allowed assemble the document
            -permission 128: Allowed print the document with high resolution

Please follow examples to run the conversion from XPS to PDF. During the using, if you have any question, please contact us as soon as possible.

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