DOC to PDF Converter DLL for NET, ASP .NET, C++, C#, Win32, Win64, ASP, Visual Basic, VBSCRIPT, JSCRIPT, VB6, MFC, Delphi, Powerbuilder

DOC to PDF Converter DLL for NET, ASP .NET, C++, C#, Win32, Win64, ASP, Visual Basic, VBSCRIPT, JSCRIPT, VB6, MFC, Delphi, Powerbuilder, etc. program languages.

http://www.verydoc.com/doc-to-any.html
http://www.verydoc.com/doc2any_sdk.zip

DOC to PDF Converter offers a simple and hassle free method of converting from MS Word DOC or DOCX formats to PDF format within your application. You will make just one function call to do the conversion.

No other external components or programs are need when you use this converter. The converter includes a powerful DOC/DOCX data parser used by our TE Edit Control product. It also includes a robust PDF Generator used by our WinPDF product. This converter combines the functionality of TE Edit Control and WinPDF to offer a cost efficient, feature-rich and robust translator.

DOC to PDF Conversion supports the following features:

  • Converts both the DOC and DOCX formats to PDF format.
  • Fonts, point-size, various character styles and colors.
  • Paragraph formatting features such as centering, justification, indentation, etc.
  • Complex elements such as tables, nested tables, frames, header/footer, columns, shapes, etc.
  • Support for PNG, JPEG, WMF, EMF, GIF, and WMF picture formats.
  • Embedded and linked graphics.
  • Unicode support.
  • Horizontal and vertical text placement.
  • Right-to-left and mix/latin text.
  • Embedded fonts.
  • Line, rectangle, circle, and ellipse drawing objects.
  • Bookmark outlines.
  • Hyperlink.
  • Security permissions and password protection.
  • Support for RC4 128 bit and AES 128 bit encryption technology.
  • Support for pdf text search and copy/paste.

Code Output: The generated PDF code can be written to a disk file or it can be retrieved in a memory buffer.

Programming Interface: Your application simply uses function calls to do the conversion. The Win32 and Win64 versions include the function and constant declaration files for C/C++, Visual Basic and Delphi. The product is usable in any environment which allows for calling simple DLL functions.

The .NET version of this product is written using pure C# managed code. The .NET version can also be used within an ASP.NET server application.

Please refer to a sample C# code at below,

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using VeryPDF;
using System.IO;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string appPath = Path.GetDirectoryName(Application.ExecutablePath);
            string strInFile = "D:\\downloads\\verypdf.doc";
            string strOutFile = "D:\\downloads\\_test_out.pdf";

            string strCmd = "-$ XXXX-XXXX-XXXX-XXXX -ownerpwd 123
                       -keylen 2 -encryption 3900";
            strCmd += " \"" + strInFile + "\" \"" + strOutFile + "\"";
            MessageBox.Show(strCmd);

            System.Type VeryPDFType = System.Type.GetTypeFromProgID
                            ("VeryPDF.doc2anyCom");
            VeryPDF.doc2anyCom VeryPDFCom = (VeryPDF.doc2anyCom)
                            System.Activator.CreateInstance(VeryPDFType);
            string strReturn = VeryPDFCom.doc2any(strCmd);
            MessageBox.Show("Processing finished.");
        }
    }
}

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

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *


Verify Code   If you cannot see the CheckCode image,please refresh the page again!