$pdf->SetAuthor('http://www.ianseo.net'); $pdf->SetCreator('Software Design by Ianseo'); $pdf->SetTitle('IANSEO - Integrated Result System'); $pdf->SetSubject('Final Athlete Name'); $pdf->SetTextColor(0x0, 0x0, 0x0); $pdf->SetDrawColor(0x33, 0x33, 0x33); $pdf->SetFillColor(0xe8, 0xe8, 0xe8); $rep = array('ASD' => '', 'A.S.D.' => ''); $n = 0; error_reporting(E_ALL); while ($MyRow = safe_fetch($Rs)) { $match2 = $n % 2 == 0; $n++; if ($match2) { $pdf->AddPage(); $pdf->Line(5, $pdf->getPageHeight() / 2, 15, $pdf->getPageHeight() / 2); $pdf->Line($pdf->getPageWidth() - 15, $pdf->getPageHeight() / 2, $pdf->getPageWidth() - 5, $pdf->getPageHeight() / 2); } if ($match2) { $pdf->SetXY(10, 10); } else { $pdf->SetXY(10, $pdf->getPageHeight() / 2 + 10); } $pdf->SetFont('', '', 220); $pdf->Cell($pdf->getPageWidth() - 20, $pdf->getPageHeight() / 2 - 20, str_replace(array_keys($rep), array_values($rep), $MyRow->Athlete), 0, 1, 'L', 0); if (!empty($_REQUEST['TargetAssign'])) { // PArte di riconoscimento EVENTO e Paglione $tmpY = ($match2 ? $pdf->getPageHeight() / 2 : $pdf->getPageHeight()) - 10; $pdf->SetFont('', '', 10); $pdf->SetXY($pdf->getPageWidth() - 20, $tmpY); $pdf->Cell(10, 5, "G." . $MyRow->sGo, 1, 0, 'C', 0);
$pdf->setPrintHeader(false); $pdf->setPrintFooter(false); $pdf->SetMargins(0, 0, 0); $pdf->SetAutoPageBreak(false, 0); $pdf->SetFont('', '', 220); $pdf->SetAuthor('http://www.ianseo.net'); $pdf->SetCreator('Software Design by Ianseo'); $pdf->SetTitle('IANSEO - Integrated Result System'); $pdf->SetSubject('Final Athlete Name'); $pdf->SetTextColor(0x0, 0x0, 0x0); $pdf->SetDrawColor(0x33, 0x33, 0x33); $pdf->SetFillColor(0xe8, 0xe8, 0xe8); $pdf->setCellMargins(0, 0, 0, 0); $pdf->SetCellPadding(0); $Height = array(0, 0, 0); $Height[1] = $pdf->getPageHeight() / 3; $Height[2] = $Height[1] * 2; $Width = $pdf->getPageWidth() - 65; $CellHeight = $Height[1] - 10; // 5 top and bottom $fontname = $pdf->addTTFfont($CFG->DOCUMENT_PATH . 'Common/tcpdf/fonts/ariblk.ttf'); $pdf->SetFont($fontname); $Filter = ''; if (!empty($_REQUEST['x_Session'])) { $Filter .= " and QuSession={$_REQUEST['x_Session']}"; } if (!empty($_REQUEST['x_From'])) { $Filter .= " and substr(QuTargetNo,2)>='" . str_pad($_REQUEST['x_From'], 3, '0', STR_PAD_LEFT) . "'"; } if (!empty($_REQUEST['x_To'])) { $Filter .= " and substr(QuTargetNo,2)<='" . str_pad($_REQUEST['x_To'], 3, '0', STR_PAD_LEFT) . "'";