WebService::Trynt::PDF - Easy Interface for Trynt PDF Web Services


WebService-Trynt-PDF documentation  | view source Contained in the WebService-Trynt-PDF distribution.

Index


NAME

Top

WebService::Trynt::PDF - Easy Interface for Trynt PDF Web Services

VERSION

Top

Version 0.01

SYNOPSIS

Top

WebService::Trynt::PDF is an interface for Trynt Web Services, so you can convert an URL into a PDF file.

    use WebService::Trynt::PDF;

    my $trynt_ws = WebService::Trynt::PDF->new( url => "http://www.cnn.com", cache_flush => 0); 
    my $file = $trynt_ws->get();
    $file->save_to("./cnn.pdf");

    or shortly

    my $trynt_ws = WebService::Trynt::PDF->new( url => "http://www.cnn.com");
    $trynt_ws->get("./cnn.pdf");

FUNCTIONS

Top

new

get

url

cache_flush

output

AUTHOR

Top

Emmanuel Di Pretoro, <<manu at bjornoya.net>>

SEE ALSO

Top

http://trynt.com/trynt-api-pdf/

BUGS

Top

Please report any bugs or feature requests to bug-webservice-trynt-pdf at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WebService-Trynt-PDF. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc WebService::Trynt::PDF

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/WebService-Trynt-PDF

* CPAN Ratings

http://cpanratings.perl.org/d/WebService-Trynt-PDF

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=WebService-Trynt-PDF

* Search CPAN

http://search.cpan.org/dist/WebService-Trynt-PDF

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


WebService-Trynt-PDF documentation  | view source Contained in the WebService-Trynt-PDF distribution.