Welcome Guest, Not a member yet? Register   Sign In
yet another pdf library
#1

[eluser]pixelazion[/eluser]
hi everyone,

i found another pdf library which handles long tables pretty well, i'm having trouble converting it as ci plugin. I'v been to dompdf to tcpdf and still have some layout issues. anyway here's the link to the found library. http://www.html2pdf.fr/?lang=en
see example 5 to see what i mean from the link above.

i need help on this one. i just need it to be converted to CI plugin.

here's what i got so far:

Code:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');


    function html2pdf( $content = '', $filename = '', $papersize="letter", $orientation = "P" ){

        
        require_once("html2pdf/html2pdf.class.php");
        $html2pdf = new HTML2PDF( $orientation, $papersize, 'en' );

        $html2pdf->pdf->SetDisplayMode( 'fullpage' );

        $html2pdf->WriteHTML( $content, isset( $_GET['vuehtml'] ) );

        $html2pdf->Output( $filename.'.pdf' );

    }

?>

directory structure is standard CI

tnx


Messages In This Thread
yet another pdf library - by El Forum - 03-16-2009, 01:10 AM
yet another pdf library - by El Forum - 03-16-2009, 02:59 AM
yet another pdf library - by El Forum - 03-16-2009, 03:05 AM
yet another pdf library - by El Forum - 03-16-2009, 04:58 AM
yet another pdf library - by El Forum - 03-16-2009, 09:54 AM
yet another pdf library - by El Forum - 03-16-2009, 10:20 AM
yet another pdf library - by El Forum - 03-16-2009, 06:09 PM
yet another pdf library - by El Forum - 03-16-2009, 09:35 PM
yet another pdf library - by El Forum - 06-16-2009, 07:51 AM
yet another pdf library - by El Forum - 06-16-2009, 07:54 AM
yet another pdf library - by El Forum - 06-16-2009, 08:25 AM
yet another pdf library - by El Forum - 03-09-2011, 02:50 AM



Theme © iAndrew 2016 - Forum software by © MyBB