Esempio n. 1
0
 //Some variables
 $table_full_width = 190;
 $table_col_width = array(45, 40, 45, 60);
 $table = array('label', 'login', 'pw', 'description');
 $prev_path = "";
 //Prepare the PDF file
 include $_SESSION['settings']['cpassman_dir'] . '/includes/libraries/Pdf/Tfpdf/fpdf.php';
 $pdf = new FPDF_Protection();
 $pdf->SetProtection(array('print'), $_POST['pdf_password']);
 //Add font for regular text
 $pdf->AddFont('DejaVu', '', 'DejaVuSansCondensed.ttf', true);
 //Add monospace font for passwords
 $pdf->AddFont('LiberationMono', '');
 $pdf->aliasNbPages();
 $pdf->addPage();
 $pdf->SetFont('DejaVu', '', 16);
 $pdf->Cell(0, 10, $LANG['print_out_pdf_title'], 0, 1, 'C', false);
 $pdf->SetFont('DejaVu', '', 12);
 $pdf->Cell(0, 10, $LANG['pdf_del_date'] . " " . date($_SESSION['settings']['date_format'] . " " . $_SESSION['settings']['time_format'], time()) . ' ' . $LANG['by'] . ' ' . $_SESSION['login'], 0, 1, 'C', false);
 $prev_path = "";
 $table = array('label', 'login', 'pw', 'description');
 foreach ($rows as $record) {
     $printed_ids[] = $record['id'];
     if ($prev_path != $record['path']) {
         $pdf->SetFont('DejaVu', '', 10);
         $pdf->SetFillColor(192, 192, 192);
         error_log('key: ' . $key . ' - paths: ' . $record['path']);
         $pdf->cell(0, 6, $record['path'], 1, 1, "L", 1);
         $pdf->SetFillColor(222, 222, 222);
         $pdf->cell($table_col_width[0], 6, $LANG['label'], 1, 0, "C", 1);
         $pdf->cell($table_col_width[1], 6, $LANG['login'], 1, 0, "C", 1);
Esempio n. 2
0
 private function CreateTanPDF($tans, $id, $password)
 {
     $outputPath = "/tmp/" . self::$outputPathAbs . $id . ".pdf";
     $dbHandler = $dbHandler = DatabaseHandler::getInstance();
     $row = $dbHandler->execQuery("SELECT * FROM users WHERE id='" . $id . "';")->fetch_assoc();
     $hashedPassword = $row['password'];
     $currPassword = Account::CalcPDFPassword($hashedPassword);
     $pdf = new FPDF_Protection();
     $pdf->SetProtection(array(), $currPassword, $currPassword);
     $pdf->AddPage();
     $pdf->SetFont('Arial', 'B', 10);
     for ($i = 0; $i < self::$tanCount; $i++) {
         $text = $i . ": " . $tans[$i] . "\n";
         $pdf->Cell(0, 4, $text, 0, 1);
     }
     $pdf->Output($outputPath);
     return $outputPath;
 }
Esempio n. 3
0
function generateUserPDF($userId)
{
    require_once 'FPDF/fpdf_protection.php';
    $pdf = new FPDF_Protection();
    //create the instance
    $pdf->AddPage();
    $pdf->SetFont('Helvetica', 'B', 18);
    //set the font style
    $pdf->Cell(75);
    //start 7.5 cm from right
    $pdf->Cell(0, 10, "Tan Numbers");
    //name the title
    $pdf->SetFont('Helvetica', '', 15);
    $pdf->Ln(15);
    //linebreak
    $tans = selectTansByUserId($userId);
    $i = 0;
    foreach ($tans as $tan) {
        $pdf->SetFont('Helvetica', 'B', 15);
        $pdf->Cell(15, 10, $i + 1 . " - )");
        $pdf->SetFont('Helvetica', '', 15);
        $pdf->Cell(0, 10, " {$tan->TAN_NUMBER}");
        $pdf->Ln(10);
        $i++;
    }
    return $pdf;
}
 //Some variables
 $table_full_width = 190;
 $table_col_width = array(45, 40, 45, 60);
 $table = array('label', 'login', 'pw', 'description');
 $prev_path = "";
 //Prepare the PDF file
 include $_SESSION['settings']['cpassman_dir'] . '/includes/libraries/Pdf/Tfpdf/fpdf.php';
 $pdf = new FPDF_Protection();
 $pdf->SetProtection(array('print'), $_POST['pdf_password']);
 //Add font for regular text
 $pdf->AddFont('helvetica', '');
 //Add monospace font for passwords
 $pdf->AddFont('LiberationMono', '');
 $pdf->aliasNbPages();
 $pdf->addPage();
 $pdf->SetFont('helvetica', '', 16);
 $pdf->Cell(0, 10, $LANG['print_out_pdf_title'], 0, 1, 'C', false);
 $pdf->SetFont('helvetica', '', 12);
 $pdf->Cell(0, 10, $LANG['pdf_del_date'] . " " . date($_SESSION['settings']['date_format'] . " " . $_SESSION['settings']['time_format'], time()) . ' ' . $LANG['by'] . ' ' . $_SESSION['login'], 0, 1, 'C', false);
 $prev_path = "";
 $table = array('label', 'login', 'pw', 'description');
 foreach ($rows as $record) {
     // decode
     $record['label'] = utf8_decode($record['label']);
     $record['login'] = utf8_decode($record['login']);
     $record['pw'] = utf8_decode($record['pw']);
     $record['description'] = utf8_decode($record['description']);
     $printed_ids[] = $record['id'];
     if ($prev_path != $record['path']) {
         $pdf->SetFont('helvetica', '', 10);
         $pdf->SetFillColor(192, 192, 192);
Esempio n. 5
0
<?php

require 'fpdf_protection.php';
$pdf = new FPDF_Protection();
$pdf->SetProtection(array('print'));
$pdf->AddPage();
$pdf->SetFont('Arial');
$pdf->Write(10, 'You can print me but not copy my text.');
$pdf->Output();