xhtml2pdf 3.0.28 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News xhtml2pdf 3.0.28 (Default branch)
# 1  
Old 11-22-2008
xhtml2pdf 3.0.28 (Default branch)

xhtml2pdf converts HTML/XHTML/XHML to PDF using the ReportLab Toolkit, the HTML5lib, and pyPdf. It supports HTML 5 and CSS 2.1 (and some of CSS 3). The main benefit of this tool that a user with Web skills like HTML and CSS is able to generate PDF templates very quickly without learning new technologies. License: GNU General Public License v2 Changes:
Background colors for inline elements like SPAN. Inline images and left and right aligned images. The option "--system" for a command line tool to dump system version info. The CSS attribute -pdf-line-spacing for fix space between lines. Creation and handling of data URIs with base64 encoding (others to come). A new general file loader that is also able to load remote data and data URIs. PDF Joiner to concatenate many PDF and pisa documents. Page backgrounds can now be images or PDF files. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
CSS::DOM::Rule::Media(3pm)				User Contributed Perl Documentation				CSS::DOM::Rule::Media(3pm)

NAME
CSS::DOM::Rule::Media - CSS @media rule class for CSS::DOM VERSION
Version 0.14 SYNOPSIS
use CSS::DOM; my $media_rule = CSS::DOM->parse( '@media print { body { background: none } }' )->cssRules->[0]; # OR: use CSS::DOM::Rule::Media; my $media_rule = new CSS::DOM::Rule::Media $parent; push @{$media_rule->media}, 'print'; $media_rule->insertRule('body { background: none }') DESCRIPTION
This module implements CSS @media rules for CSS::DOM. It inherits from CSS::DOM::Rule and implements the CSSMediaRule DOM interface. METHODS
media Returns the MediaList associated with the @media rule (or a plain list in list context). This defaults to an empty list. You can pass a comma-delimited string to the MediaList's "mediaText" method to set it. cssRules In scalar context, this returns a CSS::DOM::RuleList object (simply a blessed array reference) of CSS::DOM::Rule objects. In list context it returns a list. insertRule ( $css_code, $index ) Parses the rule contained in the $css_code, inserting it the @media rule's list of subrules at the given $index. deleteRule ( $index ) Deletes the rule at the given $index. SEE ALSO
CSS::DOM CSS::DOM::Rule CSS::DOM::MediaList perl v5.10.1 2010-12-10 CSS::DOM::Rule::Media(3pm)