Exemplo n.º 1
0
:verse:
+{G}i heard
that you'll {D} settle down
that you'v{Em}e found a girl
and you'{C}re married now
{G}+i heard
that your d{D}reams came true
guess she {Em}gave you things
i didn't {C}give to you
old {G} friend
why are you {D}so shy
it ain't like {Em}you to hold back
or {C}hide from the light

EOD;
$tlac = new TLAC();
$html = $tlac->toHtml($text);
echo <<<EOD
<!DOCTYPE html>
<html>
    <head>
        <title>Title of the document</title>
        <link rel="stylesheet" type="text/css" href="chords.css">
    </head>
    <body>
        {$html}
    </body>
</html> 

EOD
;
Exemplo n.º 2
0
Arquivo: pdf.php Projeto: ludviki/tlac
<?php

ini_set('display_errors', 'on');
// set up autoloading
require '../vendor/autoload.php';
use ludviki\TLAC\TLAC;
$song = file_get_contents(__DIR__ . '/text.txt');
$tlac = new TLAC();
$pdf = $tlac->toPdf($song);
//
// Close and output PDF document
// correct headers are set
//
$pdf->Output('tlac.pdf', 'I');
Exemplo n.º 3
0
<?php

ini_set('display_errors', 'on');
// set up autoloading
require '../vendor/autoload.php';
use ludviki\TLAC\TLAC;
$song = file_get_contents(__DIR__ . '/text.txt');
$tlac = new TLAC();
$html = $tlac->toHtml($song);
echo <<<EOD
<!DOCTYPE html>
<html>
    <head>
        <title>TLAC Example</title>
        <link rel="stylesheet" type="text/css" href="chords.css">
    </head>
    <body>
        {$html}
    </body>
</html> 

EOD
;
Exemplo n.º 4
0
use ludviki\TLAC\TLAC;
$text = <<<EOD

:title:
Adele - Someone like you

+{G}+ {D}+ {Em}+

:verse:
+{G}i heard
that you'll {D} settle down
that you'v{Em}e found a girl
and you'{C}re married now
{G}+i heard
that your d{D}reams came true
guess she {Em}gave you things
i didn't {C}give to you
old {G} friend
why are you {D}so shy
it ain't like {Em}you to hold back
or {C}hide from the light


EOD;
$tlac = new TLAC();
$pdf = $tlac->toPDF($text);
//
// Close and output PDF document
// correct headers are set
//
$pdf->Output('TLAC.pdf', 'I');