| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | RTF-Edit |
script | ASP NET | $300.00 Additional Info: Redistribution License |
View Detail
|
|||||||||
|
||||||||||||||
| 2 | Active RTF |
script | ASP NET | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 3 | RTF::Reader 0.01_2 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
RTF::Reader is a base class for building RTF-processing modules. Gives you a simple toolset for doing what you want with RTF THIS MODULE IS AT BEST BETA, AT WORST, STILL IN PLANNING. The interface may change, the docs are almost certainly slighty out of date.... The latest version of all this is in CVS - use that instead where possible. Details at http://rtf.perl.org/... RTF::Reader is a base-class that opens up an API for you to use to convert RTF into other formats. The basic model is that you have contexts which represent places in an RTF document, for which you can define what action is taken when different types of RTF constructs are encountered. Before starting, you should also read RTF::Reader::Context to get a better idea of how to do this. |
||||||||||||||
| 4 | Active RTF 1.0 |
windows | Software Development->Components Libraries | $299 |
View Detail
|
|||||||||
Active RTF will enable any developer to convert an HTML document into an RTF document and RTF document into HTML or XHTML document RTF is one of the most common document formats in the world, therefore broadening your customer acceptance. It s easy to create customizable HTML templates using merge fields, and then convert the resulting document to its RTF version for later delivery. Producing easily editable invoices or any other documents on any computer has never been easier! RTF format is fully supported by 100% of the Windows based operating systems and widely used on the alternatives. Here are some key features of "Active RTF": · Bi-directional RTF and HTML conversions. · Support RTF to XHTML conversion. · HTML standard fully supported. · RTF standard fully supported. · Both HTML and RTF image support. · HTML Css File supported. · Capable of only converting part of an RTF file (header, content, footer or full). · Customizable document properties including title, page orientation, size (A4, B5, Letter, ...). · Automatic encoding selection, including Windows 1250 to 1258 and ISO 8859-1 to 8859-9. · Default font can be configured. · Unlimited nested table support. · Table borders. |
||||||||||||||
| 5 | Active RTF 1.2 |
windows | Web Development->HTML to ASCII Converters | $99 |
View Detail
|
|||||||||
Using ActiveRTF will enable any developer to convert an HTML document into an RTF document in just 2 lines of code. RTF is one of the most common document formats in the world, therefore broadening your customer acceptance. Its easy to create customizable HTML templates using merge fields, and then convert the resulting document to its RTF version for later delivery. Producing easily editable invoices or any other documents on any computer has never been easier! RTF format is fully supported by 100% of the Windows based operating systems and widely used on the alternatives. The following HTML tags are actuall supported : - convert tables - hyperlinks support - font face, color and size support - page alignment support - bold, italic and underline text - special characters - automatic coding select |
||||||||||||||
| 6 | RTF::Writer 1.11 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
RTF::Writer is a Perl module for generating documents in Rich Text Format. SYNOPSIS use RTF::Writer; my $rtf = RTF::Writer->new_to_file("greetings.rtf"); $rtf->prolog( title => "Greetings, hyoomon" ); $rtf->number_pages; $rtf->paragraph( fs40bi, # 20pt, bold, italic "Hi there!" ); $rtf->close; This module is a class; an object belonging to this class acts like an output filehandle, and calling methods on it causes RTF text to be written. Incidentally, this module also exports a few useful functions, upon request. METHODS $h = RTF::Writer->new_to_file($filename); This creates a new RTF output stream object, such that sending text to this object will write to the filespec given. This is basically a wrapper around new_to_handle. If opening a write-handle to $filename fails (or if $filename is undef or zero-length), then a fatal error results. $h = RTF::Writer->new_to_handle(*FILEHANDLE); This creates a new RTF output stream object, such that sending text to this object will write to the filehandle given. The filehandle can be a glob (*FH) or a filehandle object (*FH{IO} or the value from IO::File->new(...)). $h = RTF::Writer->new_to_string($string); This creates a new RTF output stream object, such that sending text to this object will append to the string that youve passed a reference to. $h->print(...); This is the basic method for writing text to an RTF stream. This takes a list of items. Each item is either: a plain string, like "foon" In this case, the value is imputed to be a plaintext string, and an rtf-escaped version of it is written. For example "StuffnttUmmmn" causes Stuffline tab tab Ummline to be written. See rtfesc(x) for further details of escaping. a scalar-reference, like ul In this case, the value is imputed to be a reference to already escaped text. This is the basic way to emit RTF codes. Text passed this way will be written without any additional escaping. Unless $RTF::Writer::AUTO_NL (normally on) has been turned off, the item written will be followed with a (presumably harmless) newline character to delimit any code in there from any following text, if the last character of this string is a digit or a lowercase letter. This is so that (i, "foo!") emits i[newline]foo! (which does what you expected), instead of ifoo!, which looks like an RTF command "ifoo" followed by a plaintext "!". an array-reference, like [ ul, foo ] This emits an open-brace "{", as RTF uses for opening "groups" (generally for delimiting the effects of character-formatting commands like ul, or a few formatting commands like footnote); then it emits the items in the referred-to array; and then emits a closing "}". I intend this to be useful is making sure that you dont emit more open-braces than close-braces, since that usually makes RTF readers immediately reject such a file. You can nest these array-references, like: $h->print( col2, [ pard, "It is now ", [ f1, scalar(localtime), " local, or ", scalar(gmtime), " GMT.", ], " -- if youre ", [ i, "keeping track.", ], ], parpage, ); The return value of the print() method is currently always the value 1, although this may change. $h->prolog(...); This writes an RTF prolog to $h. You are free to make your own prolog using just $h->print(...your own code...), but I find in easier to automate this task, particularly with some sane defaults. Since emitting a prolog opens a "{"-group, calling $h->prolog(...) sets a flag in $h so that when you call $h->close(), a closing "}" will automatically be written before the stream object is actually closed. The options to the prolog() method are passed as a list of keys and values, for controlling the contents of the prolog written. The options are listed below, roughly with the most important options first. (Be careful with the spelling of these options. Some are rather odd, because they are (mostly) based on the name of the relevent RTF command, and a systematic naming scheme for commands is one thing you wont find in RTF!) fonts => [ "Courier New", "Georgia", "Whatever"...], This value is for the font table section of the prolog. If the value is an arrayref, then it should be a reference to an array whose items should be either plain text strings, like "Times Roman", which are the (unescaped) names of fonts; or the items in the array can be scalar-refs, for expressing RTF control words along with the (escaped) font name, as in froman Times New Roman. If the value of the "fonts" parameters is a scalar ref, then it is taken to be a reference to code of your own that expresses the whole font table. If you dont specify a value for the "font" option, then you get a font table with one entry, "Times New Roman". You should be sure to declare all fonts that you switch to in your document (as with f3, to change the current font to whats declared in entry 3 (counting from 0) in the font table). deff => INTEGER, This is for expressing, in the prolog, the font-table number of the default font for this document. The default is 0, which is an often useful value. colors => [ undef, [0,142,252], [200,32,0], ...], This value is for expressing the documents (generally optional) color table. If you stipulate an arrayref value, then each item of the array should be either an RGB triplet expressed as an arrayref like [200,32,0], or undef, for a null color-entry. If you stipulate a scalar-ref value for colors, then it is taken to be a reference to code of your own that expresses the whole font table. If you dont stipulate any value for colors, then you get a table consisting of three colors: null/default (undef), 100% red ([2550,0,0]), and 100% blue ([0,0,255]). You can freely ignore concerns of color tables if you dont use color-changing codes in your document (like cf2, to switch the text foreground color to whats declared at entry 2 (starting from 0) in the color table). stylesheet => STRING, filetbl => STRING, listtables => STRING, revtbl => STRING, These are for expressing, in the prolog, code constituting the documents style sheet, table-of-files, table-of-lists, and table-of-revisions, respectively. The default value of each of these is empty-string. None of these are needed by a typical RTF document. more_default => STRING, This is for inserting any additional code just after the deffN in the start of the prolog, before the font table. A common useful value here is deflang1033, to express the default language (1033 = RTFese for US English) for the document, although my reading of the RTF spec leads me to believe that this doesnt need to be in the prolog here (where many writers put it, as apparently accepted by many RTF readers), but should (instead?) go just after the prolog, with other "document formatting" commands described in the "Document Formatting Properties" section of the RTF Specification. doccomm => STRING, This value is for the "document comment" metainformation item in the prolog, which appears as the "Comment" field in the "File Properties" panel in MSWord, or as the "Abstract" field in the "File Properties" window in WordPerfect. If no value is specified, then RTF::Writer puts a string noting the value of $0 (typically the filespec to the current Perl program), and the version of RTF::Writer used. title => STRING, subject => STRING, author => STRING, manager => STRING, company => STRING, operator => STRING, category => STRING, keywords => STRING, hlinkbase => STRING, comment => STRING, These are for stipulating the string values of these various optional document metainformation items. operator is for the name of the person who last made changes to the document; hlinkbase is which is the URL or path that is used for for resolving any all relative hyperlinks in the document; comment is reportedly just ignored (cf. the doccomm attribute, which is not ignored); and you can guess the rest. The meanings of all of these are explained in greater detail in the RTF spec. revtim => EPOCH_NUMBER, This value is for the document metainformation section of the prolog. It signifies the last-modified time of the document. EPOCH_NUMBER is the number of seconds since the epoch, such as one gets from (stat($thing)[9]) or time(); or you may pass a reference a timelist, like [localtime($whatever)]. If no defined value for revtime is stipulated in the call to prolog(...) then the current value of time() is used. Explicitly pass a value of undef to suppress emitting any creatim value. creatim => EPOCH_NUMBER, This value is for the document metainformation section of the prolog. It signifies the last-modified time of the document. If no defined value for creatim is stipulated in the call to prolog(...) then the current value of time() is used. Explicitly pass a value of undef to suppress emitting any creatim value. printim => EPOCH_NUMBER, This value is for the document metainformation section of the prolog. It signifies the time when this document was last printed. If you dont stipulate a defined value here, no printim metainformation is written. buptim => EPOCH_NUMBER, This value is for the document metainformation section of the prolog. It signifies the "backup time" of this document. If you dont stipulate a defined value here, no buptim metainformation is written. version => INTEGER, vern => INTEGER, edmins => INTEGER, nofpages => INTEGER, nofwords => INTEGER, nofchars => INTEGER, nofcharsws => INTEGER, id => INTEGER, These are for stipulating the integer values of these various optional (and not terribly useful, for most purposes!) document metainformation items. The meanings of all of these are explained in the RTF spec. charset => STRING, This is for expressing, in the prolog, RTF codename for the character set being used in this document. The default is "ansi", and dont stipulate anything else (like "mac", "pc", or "pca") unless you know what youre doing. rtf_version => INTEGER, This is for expressing, in the prolog, what major version of RTF is being used in this document. The default is 1, and dont use anything else unless you really know what youre doing. $h->printf(format, ...items...); This is just short for $h->print(sprintf(format, ...items...) $h->printf(format, ...items...); In this case, format is assumed to contain already-escaped RTF code. The items in ...items... are escaped as necessary, and then interpolated. I.e., this is rather like: $h->print(sprintf format, map rtfesc($_), ...items...)) except that numeric items dont get escaped (and dont need to be). Example: $h->printf( {i "%s"} was found in %2.2f percent of matchespar, $word, 100 * $count / $total ); $h->number_pages(); $h->number_pages(...); This is just a handy wrapper for some code that turns on page numbering. If you call this method, you should call it right after you emit a prolog. The page numbering consists of just putting the page number at the top-right of each page. If you provide items in the list (...), then that is pre-pended to the page number. Example: $h->number_pages("Lexicon, p."); Or: $h->number_pages(bfs30f2, "page "); $trdecl = RTF::Writer::TableRowDecl->new( ...options... ) This constructs an object representing a declaration for a table row. You can have to use it in calls to $h->row($tabldecl,...), and can reuse it on subsequent calls. This object is for declaring the dimensions of table rows. The work that a declaration has to do, is best explained in this diagram of a bordered three-cell table (first cell containing "Foo ya!"), placed near a left margin (shown as the line of colons). The things in brackets are not on the page, but just for our reference: : [..w1...] : [......w2.......] : [...w3....] [.A..] [.B.] [.B.] : : +-------+---------------+---------+ : | Foo | Bar baz | Yee! | : | ya! | quuxi quuxo | | : | | quaqua. | | : +-------+---------------+---------+ : [.A..] [.B.] [.B.] [..r1........] [.....r2.....................] [........r3............................] Here the horizontal dimensions of the three-celled table are expressed in terms of: A, the distance from the current left margin; B, the minimum distance between the content of the cells (or you can think of this as twice the internal left or right borders in each cell); and then EITHER [w1, w2, w3], expressing the width of each cell, OR [r1, r2, r3], expressing each cells right ends distance from the current left margin. All distances are, of course, in twips. Options to RTF::Writer::TableRowDecl->new( ...options... ) are: left_start => TWIPS, This declares the distance between the left margin, and the left end of the table. Default is 0. inbetween => TWIPS, This declares the distance labelled "B", above. Default is 120, which is 6 points, 1/12th-inch, about 2mm. widths => [TWIPS, TWIPS, TWIPS, ... ], This expresses the widths of each of the cells in this row, starting from the leftmost. reaches => [TWIPS, TWIPS, TWIPS, ... ], This expresses the rightmost extreme of each of the cells in this row. align => alignmentspecs, This is explained in detail in the section "Cell Alignment Syntax", below. borders => borderspecs, This is explained in detail in the section "Cell Border Syntax", below. $h->paragraph(...); This makes the items in the list (...) into a paragraph. Basically just a wrapper for $h->print([ {par, ..., pard}, ]) $h->row($trdecl, ...items...); This emits a table row, with dimensions as stipulated by the $trdecl object, and with row content from the items given. You must provide a value for $trdecl, or a fatal error results. If you provide fewer items than $trdecl declares cells, then you get empty cells to fill out the row. If you provide more items than $trdecl declares cells, then the width of the last declared row is used in figuring the width of the additional cells for this row. Example: my $decl = RTF::Writer::TableRowDecl->new(widths => [1500,1900]); $h->row($decl, "Stuff", "Hmmm"); $h->row($decl, [ul, Foo], Bar, bullet); $h->row($decl, "Hooboy."); This creates a table resembing: +-------------+-------------------+ | Stuff | Hmm | +-------------+-------------------+-------------------+ | _Foo_ | Bar | * | +-------------+-------------------+-------------------+ | "Hooboy." | | +-------------+-------------------+ Note that you MUST NOT use par commands in any items you emit in row cells! The $h->row(...) method is a wrapper for producing elementary tables in RTF, with the minimum of parameters; the myriad other options that tables can have (for example, changing borders) are not supported. If you really need to generate tables fancier than what $h->row(...) can produce, start off reading the RTF spec, reading the source for row() (and the RTF::Writer::TableRowDecl class), and progress from there. Note that MSWord has been known to crash when given malformed RTF table code. $h->table($trdecl, [...row1 items...], [...row2 items...], ... ); $h->table([...row1 items...], [...row2 items...], ... ); This is a wrapper around $h->row. It takes a list of arrayrefs, which are fed to calls to h->row($tr_decl, @$each_arrayref). You should provide a $trdecl, but if you dont, then one is crudely guessed at, based on the maximum number of columns in all rows. $h->image( image_parameters ) This returns a scalar-reference to RTF-code representing the given image with given parameters. For example: $h->paragraph( "See here: ", $h->image( filename => "foo.png", ), ); The legal options are explained below: filename => FILENAME, This should be the path to a readable filename. You have to specify this. If you dont specify this, or if the value isnt a readable file, then a fatal error results. Currently, only JPEGs and PNGs are allowed; specifying any other kind of file causes a fatal error. (The filename option above is required, but the following options are all generally optional -- altho some RTF processors may be finicky if you set some of the following but not others, for no apparent reason. When in doubt, test.) wgoal => TWIPS, The desired width of the image hgoal => TWIPS, The desired height of the image scalex => PERCENT, scaley => PERCENT, Respectively, the horizontal (X) or vertical (Y) scaling value. The argument is an integer representing a percentage. (The default is 100 percent) cropt => TWIPS, cropb => TWIPS, cropl => TWIPS, cropr => TWIPS, These specify the top, bottom, left, and right cropping values. A positive value crops toward the center of the image. A negative value crops away from the center, adding a padding space around the image. (The default is to do neither, as youd get from a cropping value of 0.) picspecs => SCALARVALUE, This overrides generation of the normal image values based the image and the above parameters, and instead uses whatever value you pass a reference to. You normally shouldnt need to use this. $h->image_paragraph( image_parameters ); This take the same options as $h->image(...), but has three differences: First, it is a shortcut for this: $h->paragraph( qc, $h->image( ...params...), ); Secondly, whereas $h->image(...) returns the image data (as an RTF scalarref), $h->image_paragraph(...) doesnt return much of anything. Thirdly, $h->image_paragraph(...) is often much more memory-efficient, since it can write the image data to a file as its RTF-ified, instead of building it all up in memory. $h->close(); This completes writing to the stream denoted by the object in $h; this generally (assuming youd called $h->prolog) involves just writing a final close-brace to $h, and then closing whatever filehandle or file $h writes to (unless were writing to a string, in which case we just discard $hs reference to it). After you call $h->close, you should not call any other methods with $h! Note that you dont have to explicitly call $h->close -- when an unclosed RTF::Writer object goes out of scope (or, more precisely speaking, when if its refcount hits zero), then something equivalent to calling $h->close is done automatically for you. |
||||||||||||||
| 7 | RTF Convertor 1.0.0 |
windows | Business Finance->Document Processing | $0 |
View Detail
|
|||||||||
RTF Convertor is a unique and easy to use software to quickly and easily print and export (10+ formats supported) your RTF/Word documents. Convert your RTF/Word documents to PDF, RTF, images and more! With the RTF Convertor, you can : Convert your RTF/Word documents to 10+ formats HTML BMP PNG JPG Lotus SVG QUATTRO Pro Excel Print / Create advanced reports using a state-of-the-art printing engine and much more! |
||||||||||||||
| 8 | EasyByte RTF-2-HTML 2.0 |
windows | Software Development->Active X | $149 |
View Detail
|
|||||||||
|
||||||||||||||
| 9 | RTF Convertor 1.0 beta |
windows | Business Finance->Document Processing | Free |
View Detail
|
|||||||||
RTF Convertor description RTF Convertor - Quickly and easily export and print your RTF/Word documents with this tool RTF Convertor is a unique and easy to use application to quickly and easily print and export (10+ formats supported) your RTF/Word Convert your RTF/Word documents to PDF, RTF, images and more! Here are some key features of "RTF Convertor": · Convert your RTF/Word documents to 10+ formats · HTML · BMP · PNG · JPG · Lotus · SVG · QUATTRO Pro · Excel · Print / Create advanced reports using a state-of-the-art printing engine |
||||||||||||||
| 10 | RTF TO XML 5.5 |
windows | Software Development->XML | $40.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 11 | RTF TO XML 5.3 |
windows | Business Finance->Document Processing | $40 |
View Detail
|
|||||||||
RTF TO XML converts RTF documents (for example, MS Word documents saved as Rich Text Format) into well-formed XML documents in line with the XSL FO specification and use various plugins to convert XML into PDF, HTML and other. RTF TO XML is a useful file conversion utility. Operated from a Graphics User Interface, or a command line, or through Java API, RTF TO XML converter can be used as a standalone application or as part of your own solutions. Using special rules of transformation of RTF formatting elements to FO ones, RTF TO XML composes well-formed XML documents or pairs XSL & XML in line with XSL FO specification. This transformation preserves internal structure and appearance of the initial documents as much as it is possible. |
||||||||||||||
| 12 | HLP To RTF Lite 5.0 |
windows | Business Finance->Document Processing | $18.95 |
View Detail
|
|||||||||
HLP To RTF Lite description HLP To RTF Lite is a software to convert Windows Help files (*.hlp) to Rtf format files directly. With this tool, you can make a specification of an application from the *.hlp files. Split the output into several RTF files. It can combine Word 97/2000/XP to process the Rtf files, you can edit,print or convert to other format that you want. What you should do with using it is just to select a *.hlp files and determine Here are some key features of "HLP To RTF Lite": · HLP To RTF Lite Features Include: · High Performance- it run faster now · Powerful options for convert · Print .hlp file through .rtf file · Supports Windows 98/ME/2000/XP/2003 · Split the output into several RTF files · Generate all source files: generate all source files of the hlp files. You can use some HLP generate tools to create the original HLP file · Generate a single RTF file with page breaks: the RTF file will keep the original format with page breaks. · Generate a single RTF file without page breaks: the RTF file will get rid of the page breaks and looks compact · Generate a single content (*.CNT) file: generate * .CNT content file Limitations: · The trial version is 150K size limited |
||||||||||||||
| 13 | RTF TO XML 5.2.1 |
windows | Network Internet->Web Server Components | $100.00 |
View Detail
|
|||||||||
RTF TO XML converts RTF documents (for example, MS Word documents saved as Rich Text Format) into well-formed XML documents in line with the XSL FO specification and use various plugins to convert XML into PDF, HTML and other. Operated from a Graphics User Interface, or a command line, or through Java API, RTF TO XML converter can be used as a standalone application or as part of your own solutions. Using special rules of transformation of RTF formatting elements to FO ones, RTF TO XML composes well-formed XML documents or pairs XSL & XML in line with XSL FO specification. This transformation preserves internal structure and appearance of the initial documents as much as it is possible. |
||||||||||||||
| 14 | RTF TO XML 5.4 |
windows | Business Finance->Office Suites | $40 to buy |
View Detail
|
|||||||||
|
||||||||||||||
| 15 | RTF-2-HTML 6.6.7 |
windows | Software Development->Components Libraries | $399 |
View Detail
|
|||||||||
RTF-2-HTML v6 is the market leader in RTF to HTML and HTML to RTF conversion, mainly due to its perfect conversion capability and EasyBytes 24/7 fanatical technical support. RTF-2-HTML is a pure component (.net Assembly and COM Dll editions) that allows developers to very easily convert Rich Text Formatted data (RTF) into HTML and convert HTML into RTF. There are several sample programs with source code in the trial version. RTF-2-HTML works in any component container, whether it be Visual Basic, VC++, ASP, C#, Delphi, Java or .NET Here are some key features of "RTF 2 HTML": · RTF-2-HTML is now available as a PURE .net Assembly as well as the existing native COM Dll · RTF-2-HTML can also Convert HTML to RTF as well as RTF to HTML. · RTF-2-HTML can now produce FULLY STANDARDS compliant XHTML. The XHTML is fully compliant with the W3C standards. · The HTML output can be cleaned, this means that the output HTML can be tidied up, so when viewed in an HTML code editor you will be able to easily modify the output or pass through a post processor. · Fully unicode compliant, works with all East Asian character sets. RTF-2-HTML works fine with Chinese, Korean, Japanese and many other character sets (ÍêÈ«¤Ê |¥¢¥ ̧¥¢¥μ¥Ý©`¥È). · RTF-2-HTML is available as a high performance COM+ dll, which is perfect for use in ASP or high performance applications. · Use textual colours for the colour of the web page, for example you could just specify pink, instead of using a long number or HEX for the colour. · RTF-2-HTML v6 can seamlessly convert embedded RTF objects such as images into PNG or JPG files that are automatically linked to in the HTML pages. · Support for all main European Languages, the complete character sets are all supported. · Corrupt RTF can be detected and in most instances can be repaired before going to the conversion to HTML phase. · Raw HTML output, RTF-2-HTML can now be set to generate raw html with no body or header tags. No font or colour information will be generated either. This feature is useful for developers who wish to put the generated HTML into their own HTML template pages, such that the template layout would not be affected. This feature is designed for web developers that can use RTF-2-HTML to produce the HTML to put in database driven pages such as ASP pages. · Dozens of minor improvements to the conversion process which ensure that the generated HTML looks even better than before in a web browser. · As with RTF-2-HTML v5, the FULL Source Code for RTF-2-HTML v6 is available for purchase, this allows you infinite customisation possibilities for generating the HTML, or modifying the conversion process. The Source Code is fully commented and documented. · A new method, ConvertNoBody has been added. This method has been designed for use in Active Server Pages (ASP or ASP.NET), it will generate HTML without any HTML body or header tags, perfect for placing in ASP pages. · Works perfectly in IIS 5, 6, 7 on both Windows 2003, Windows 2000 and NT 4 Servers when used in an ASP or ASP.NET environment. Limitations: · nag screen |
||||||||||||||
| 16 | SCML RTF printer 1.0 |
windows | Software Development->Active X | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 17 | RTF-2-HTML 8.0.4 |
windows | Web Development->HTML to ASCII Converters | $399.00 |
View Detail
|
|||||||||
RTF-2-HTML is now a v5 release, it is extremely stable having been eveloped over a period of 5 years, with the feedback from many thousands of customers. It has the feel of a very polished product with a hugh number of features, if you require them. RTF-2-HTML is backed up by fanatical 24/7 technical support via telephone or email. Please download the evaluation version and try it out today. RTF-2-HTML can produce fully W3C STANDARDS compliant XHTML from RTF. Can also convert plain text (TXT) to HTML and can also convert RTF to plain text (TXT). It is very easy to integrate into your existing applications or web sites (VB, ASP, ASP.NET, C#, Delphi, Java, dotNet and many more) Just a few lines of code and its done! Royalty FREE distribution rights. RTF-2-HTML v6 does not require any additional software to convert RTF to HTML, such as MS Word which ALL of our competitors do. RTF-2-HTML v6 is a pure Enterprise ready component. Available as a High performance COM Dll with full source code. This is designed specifically for use in ASP and ASP.NET for use on a system with a high load put on it. Converts and links to embedded images and objects, saves them as 100% lossless PNG or JPG files. All embedded RTF objects are supported from images to file links to maths equations. Massively customisable such that you get output, HTML or RTF that suits your requirements. For example you can generate HTML with no BODY tags or font tags for use in ASP templates. Use textual colours for the colour of the web page, for example you could just specify pink, instead of using a long number or HEX for colour. When converting from RTF to HTML all RTF tags that can be converted to an HTML equivalent are. All Tables are converted perfectly Fully unicode compliant |
||||||||||||||
| 18 | Embperl::Syntax::RTF 2.2.0 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Embperl::Syntax::RTF is a Perl class derived from Embperl::Syntax to define the syntax for RTF files. RTF files can be read and written by various word processing programms. This allows you to create dynamic wordprocessing documents or let process serial letters thru Embperl. Currently Embperl regocnices the fields DOCVARIABLE, MERGEFIELD and NEXT. Variablenames are resolved as hash keys to $param[0] e.g. foo.bar referes to $param[0]{foo}{bar}, the @param Array can by set via the param parameter of the Execute function. NEXT moves to the next element of the @param array. If the end of the document is reached, Embperl repeats the document until all element of @param are processed. This can for example be use to tie a database table to @param and generate a serial letter. SYNOPSIS my $x = $Embperl::req -> component -> code ; my ($op, $cmp, $a, $b) = XML::Embperl::DOM::Node::iChildsText (%$q%,%$x%,1) =~ /:([=<>])+s*"(.*?)"(?:s*"(.*?)"s*"(.*?)")?/ ; if ($op eq =) { $op = eq } elsif ($op eq <) { $op = lt } elsif ($op eq >) { $op = gt } elsif ($op eq >=) { $op = ge } elsif ($op eq <=) { $op = le } print "n#" . __LINE__ . " op = $op cmp = $cmp a = $a b = $b code=$_ep_rtf_code tmp=$_ep_rtf_tmp 0=$param[0]{adressen_anrede} ndx=$_ep_rtf_ndx eval=qq[$_ep_rtf_code]n" ; $_ep_rtf_code =~ s/$a/q[$a]/g ; $_ep_rtf_code =~ s/$b/q[$b]/g ; $_ep_rtf_code =~ s/$cmp/q[$cmp]/g ; $_ep_rtf_code =~ s/$op/$op/g ; $_ep_rtf_code =~ s/$x/$x/g ; print "result=$_ep_rtf_coden" ; warn "RTF IF syntax error. Missing operator" if (!$op) ; |
||||||||||||||
| 19 | Logictran RTF Converter 5.8.3 |
windows | Business Finance->Document Processing | $69 |
View Detail
|
|||||||||
The Logictran RTF Converter provides a way for you to quickly publish your word processing documents. Output formats provided include HTML, XHTML, CSS based HTML, ebook, and Docbook XML. In addition to the graphical user interface, a command line interface, ActiveX control, DLL and ASP interfaces are provided. These allow the same conversion capabilities to be included in your own applications. Features: - It`s FAST you can speed through conversions of single documents or large collections without having to open each individually. - You can add your own standard banners and navigation buttons to the start and/or end of every document or page, without modifying your original documents. - You can select different looks from very simple to elaborate without changing your documents in any way. - It can split large documents into smaller linked pages, complete with hypertext indexes and Table of Contents. - It is completely customizable. All of the HTML/XML markup and translation tables can be modified with a simple text editor. - It supports tables, frames, standard HTML (4.0 and earlier versions) as well as popular extensions. - It supports UNICODE and language-dependant titles. |
||||||||||||||
| 20 | PDF to Word RTF Converter 1.3 |
windows | Business Finance->PDF Tools | $19 |
View Detail
|
|||||||||
PDF to Word RTF Converter can be used to create a Word rtf document from a PDF document. You can also render text, images and shapes ( lines , rectangle ...) to Word rtf format document. Third party components are NOT needed Here are some key features of "PDF to Word RTF Converter": · Converter PDF document to Word rtf document. · Render text , images and shapes ( lines , rectangle ...) to Word rtf format document · No needed 3. party components , |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
