RTF2PDF Demo - 45 days left on license
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
WPCubed GmbH - Text and PDF Components
Search for ...
News
2011
2010
2009
2008
2007
2006
2005
2004
2003
2002
2001
Products
WPTools6
Features
WPTools-Premium
XML and Localisation Tool
Gallery
Presales Questions
Downloads
Online Manual
[Order]
WPSpell
[Order]
WPReporter
[Order]
wPDF
Generic PDF Printer
Export from WPTools
Export from WPForm
Products supported
wPDF License
[Order]
wPDFControl
License
[Order]
WPViewPDF
pdfPrint
pdfMerge
pdfMakeJPEG
pdfConvertToTIFF
License
[Order]
TextDynamic .NET
Features
[Order]
TextDynamic OCX
[Order]
TextDynamic Server / wRTF2PDF
ASP.NET Demo
Online Manual
License
Upgrades
[Order]
TextDynamic Reporting
Support
Documentation
Forum
RTF2PDF Demo - 45 days left on license
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
wPDF FAQ
Customer Login
Home
Partners
Distributors
wPDF Partner
Components
Services
Utilities
Spellcheck
Link Collection
Download
Contact
Home
Order
VCL for Delphi and C++Builder
.NET and ActiveX Components
Upgrade-Center
Demo Application
Our "multi demo" shows features of our word processing, PDF creation and PDF view engines. Please check it out to see what is possible
with our products.
Download:
The demo was built using WPTools, wPDF wn WPViewPDF and Delphi.
Home » Products » TextDynamic Server / wRTF2PDF
TextDynamic Server / wRTF2PDF
The perfect tool for document and PDF creation
RTF2PDF TestServer
www.rtf-net.com
The fully programmable word processing engine for deployment with end user applications (DLL, VB, .NET) and on ASP or ASP.NET
servers for text and PDF creation.
- process text, create tables, insert text and do mail merge
RTF2PDF Demo - 45 days left on license
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
- generate text (PDF, RTF, ANSI, HTML, UNICODE and MIME)
New: it now also prints text (on paper)
New: A special mode to format tables more like a web browser (with cell auto sizing). This demo PDF file was created by RTF2PDF
TextDynamic using the HTML to PDF conversion with our web site as input.
New: Optional reporting
API is so similar to the API of TextDynamic you can use almost the same code in your ASP page as you used for your desktop application.
wRTF2PDF - Programmable Word Processing Engine
Optimized for server side use
Completely self contained, no other tool is required for the conversion
includes support for .NET, Win32 DLL and OCX
Converts RTF files to PDF or HTML
Converts HTML to PDF or RTF
converts RTF or HTML to EMF (save each page as metafile)
Creates new RTF or HTML documents
Powerful programming API (similar to TextDynamic)
Integrated word processing engine
Supports multiple character attributes (fonts, font sizes, colors, styles and colors)
Paragraph attributes (indents, spacing, alignment, justified text)
Tabstops (left, right, decimal, centered and fill signs)
Paragraph styles with CSS support
Tables, nested tables, row merge, column merge
Footnotes
Textboxes
Columns
Headers and Footers
Images (BMP, JPEG, EMF, PNG), linked and embedded, also with wrap text on both sides!
Hyperlinks and nestable bookmarks
does powerful mail merge
Integrated PDF engine
Compression
Security (40, 128 bit)
Convert embedded EMF to vectors
Font embedding, also subsets
Support for standard brush styles (hatching)
TransparentBitBlt
Automatic reuse of the same image data. This way, when you export a document which often uses a logo the PDF
file will be significantly smaller!
Creation of PDF/A complient PDF files (with added meta data and PDF tagging when you use it with WPTools)
Support of CID fonts (known as "unicode" support)
Reliable and widely used PDF engine wPDF
Powerful programing API (.NET and COM)
Access the text on paragraph object basis
Insert text, tables and images by code
Create header and footer in code
Load and save text
Enumerate all images, links, bookmarks or fields in the document
Export pages as metafiles (images)
Create table of contents
merged RTF files
Use similar code for server and desctop application
See manual ...
TextDynamic + RTF2PDF / TextDynamic Server Manual
RTF2PDF Demo - 45 days left on license
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
This is the HTML Version of the combined Manual and Reference which is provided as PDF and CMH file.
also be used in C++ directly. The demo works for 45 days.
Export RTF file using "Commands"
if PDFControl1.StartEngine("c:\wpPDFControl\DLL\wPDFControlDemo.dll", "LicenseName", "LicenseCode", 0) = true Then
PDFControl1.BeginDoc "c:\test.pdf", 0
PDFControl1.ExecIntCommand 1000, 0
PDFControl1.ExecStrCommand 1002, "c:\test.rtf"
PDFControl1.ExecIntCommand 1100, 0
PDFControl1.EndDoc
else
MsgBox "We were not able to load the PDF Engine DLL", 0, "Error!"
End if
Export in VB6/VBS, using Interfaces (IWPMemo)
Private Sub Command1_Click()
' Initiate the OCX (if it is not already on the form)
Set PDF = CreateObject('wPDF_X01.PDFControl')
' Start Engine, last param =LIC_CODE
If PDF.StartEngine(DLLNAME.Text, "LIC_NAME", "LIC_KEY", 0) Then
' Load the file, TRUE would insert/append it
If PDF.Memo.LoadFromFile(RTFFileName.Text, False, "AUTO") Then
PDF.PDFCreator.PDFFile = Replace(RTFFileName.Text, ".rtf", ".pdf")
' Convert it
' VB6 does not let us call PDF.PDFCretor.Print so we use a command instead
PDF.ExecIntCommand 1305, 0
' Finish PDF creation
Else
MsgBox "Cannot load RTF file " + RTFFileName.Text
End If
PDF.StopEngine
Else
MsgBox "Cannot load RTF2PDF Engine from " + DLLNAME.Text
End If
End Sub
You can also add some code to replace some text and change
page format
If PDF.Memo.LoadFromFile(RTFFileName.Text, False, "AUTO") Then
' replace text
PDF.Memo.TextCursor.ReplaceText "[NAME]", "Julian Ziersch", True, False, False, True div>
' Chage Pagesize
PDF.Memo.PageSize.Landscape = True
.....
Export in ASP.NET
RTF2PDF pdf = new RTF2PDF(); font>
pdf.Memo.LoadFromFile("somtext.rtf", true, "AUTO");
pdf.PdfCreator.PDFFile = "memory";
// remove any output
Response.Clear();
// Add new header
RTF2PDF Demo - 45 days left on license
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
RTF2PDF3-DEMO
Response.ContentType = "application/pdf";
Response.AddHeader("Content-Type", "application/pdf");
// Set a file name which is displayed
Response.AddHeader("Content-Disposition","inline;filename=PortableDocument.pdf");
// Write the PDF data
Response.Clear();
// Finish
pdf.Dispose();
Home