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
PDF::FromHTML(3) User Contributed Perl Documentation PDF::FromHTML(3)

PDF::FromHTML - Convert HTML documents to PDF

    my $pdf = PDF::FromHTML->new( encoding => 'utf-8' );

    # Loading from a file:
    $pdf->load_file('source.html');

    # Or from a scalar reference:
    # $pdf->load_file(\$input);

    # Perform the actual conversion:
    $pdf->convert(
        # With PDF::API2, font names such as 'traditional' also works
        Font        => 'font.ttf',
        LineHeight  => 10,
        Landscape   => 1,
    );

    # Write to a file:
    $pdf->write_file('target.pdf');

    # Or to a scalar reference:
    # $pdf->write_file(\$output);

This module transforms HTML into PDF, using an assortment of XML transformations implemented in PDF::FromHTML::Twig.

There is also a command-line utility, html2pdf.pl, that comes with this distribution.

Convert the loaded file to PDF. Valid parameters are:

    PageWidth         640
    PageResolution    540
    FontBold          'HelveticaBold'
    FontOblique       'HelveticaOblique'
    FontBoldOblique   'HelveticaBoldOblique'
    LineHeight        12
    FontUnicode       'Helvetica'
    Font              (same as FontUnicode)
    PageSize          'A4'
    Landscape         0

Add the height and width attributes if you are creating the source HTML, it keeps PDF::FromHTML from having to open and read the source image file to get the real size. Less file I/O means faster processing.

Although PDF::FromHTML will work with both HTML and XHTML formats, it is not designed to utilise CSS.

This means any HTML using external or inline CSS for design and layout, including but not limited to: images, backgrounds, colours, fonts etc... will not be converted into the PDF.

To get an idea of the likely resulting PDF, you may wish to use an non-CSS capable browser for testing first.

There is currently no plan to adapt this module to utilise CSS. (Patches welcome, though!)

html2pdf.pl is a simple command-line interface to this module.

PDF::FromHTML::Twig, PDF::Template, XML::Twig.

Charleston Software Associates <info@charletonsw.com>

Audrey Tang <cpan@audreyt.org>

To the extent possible under law, 唐鳳 has waived all copyright and related or neighboring rights to PDF-FromHTML.

This work is published from Taiwan.

<http://creativecommons.org/publicdomain/zero/1.0>

Hey! The above document had some coding errors, which are explained below:
Around line 255:
Non-ASCII character seen before =encoding in '唐鳳'. Assuming UTF-8
2019-10-23 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.