GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
RTF::HTML::Converter(3) User Contributed Perl Documentation RTF::HTML::Converter(3)

RTF::HTML::Converter - Perl extension for converting RTF into HTML

version 1.12

Perl extension for converting RTF into HTML

        use strict;
        use RTF::HTML::Converter;

        my $object = RTF::HTML::Converter->new(

                output => \*STDOUT

        );

        $object->parse_stream( \*RTF_FILE );

OR

        use strict;
        use RTF::HTML::Converter;

        my $object = RTF::HTML::Converter->new(

                output => \$string

        );

        $object->parse_string( $rtf_data );

Constructor method. Currently takes one named parameter, "output", which can either be a reference to a filehandle, or a reference to a string. This is where our HTML will end up.

Read RTF in from a filehandle, and start processing it. Pass me a reference to a filehandle.

Read RTF in from a string, and start processing it. Pass me a string.

You can mix-and-match your output and input methods - nothing to stop you outputting to a string when you've read from a filehandle...

Peter Sergeant "pete@clueball.com", originally by Philippe Verdret

Copyright 2004 Pete Sergeant.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

This work was carried out under a grant generously provided by The Perl Foundation - give them money!
2014-04-20 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.