當前位置: 首頁>>代碼示例>>PHP>>正文


PHP FPDF::setXY方法代碼示例

本文整理匯總了PHP中FPDF::setXY方法的典型用法代碼示例。如果您正苦於以下問題:PHP FPDF::setXY方法的具體用法?PHP FPDF::setXY怎麽用?PHP FPDF::setXY使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在FPDF的用法示例。


在下文中一共展示了FPDF::setXY方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

$pdf->Image('../../public_html/imagenes/logoivss.png', 20, 7, 13);
$pdf->SetFont('Arial', '', 8);
$pdf->Text(40, 10, utf8_decode('REPÚBLICA BOLIVARIANA DE VENEZUELA'));
$pdf->Text(40, 13, utf8_decode('MINISTERIO DEL PODER POPULAR PARA EL TRABAJO Y SEGURIDAD SOCIAL'));
$pdf->Text(40, 16, utf8_decode('INSTITUTO VENEZOLANO DE LOS SEGUROS SOCIALES'));
$pdf->Text(40, 19, utf8_decode('DIRECCIÓN GENERAL DE FISCALIZACIÓN'));
/*--------------------------------------- HEADER ----------------------------------------------*/
/*------------------------------------ NUMERO FORMA -------------------------------------------*/
/*$pdf->SetFont('Arial','B',8);
$pdf->setXY(180,10);
$pdf->MultiCell(0,0,utf8_decode('Pág. 1'));*/
/*------------------------------------ NUMERO FORMA -------------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
/*-------------------------------- NUMERO DEL DOCUMENTO ---------------------------------------*/
$pdf->SetFont('Arial', 'B', 10);
$pdf->setXY(20, 30);
$pdf->MultiCell(0, 0, utf8_decode('N°: OAPOZ-N-DGF-2015-_____________'));
/*-------------------------------- NUMERO DEL DOCUMENTO ---------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
/*--------------------------------------- FECHA -----------------------------------------------*/
$pdf->SetFont('Arial', 'B', 8);
$pdf->setXY(102, 40);
$pdf->MultiCell(0, 0, utf8_decode('_____________________, ____ de __________________ del 2015.'));
/*--------------------------------------- FECHA ------------------------------------------------*/
/*----------------------------------------------------------------------------------------------*/
/*----------------------------------- CUADRO SUPERIOR  -----------------------------------------*/
$pdf->SetXY(20, 50);
$pdf->MultiCell(26, 5, utf8_decode('Razon Social'), 1, 'L', 0);
$pdf->Rect(46, 50, 145, 5, 'D');
$pdf->SetXY(20, 55);
$pdf->MultiCell(26, 5, utf8_decode('RIF'), 1, 'L', 0);
開發者ID:vanckruz,項目名稱:draftReports,代碼行數:31,代碼來源:notificacion_multa.php

示例2: FPDF

$pdf = new FPDF('P', 'mm', 'legal');
$pdf->AddPage();
$pdf->Image('../../public_html/imagenes/logoclaro.png', 40, 100, 130);
$pdf->SetTitle("Notificación al denunciante", true);
/*---------------------------------------------------------------------------------------------*/
/*--------------------------------------- HEADER ----------------------------------------------*/
$pdf->Image('../../public_html/imagenes/logoivss.png', 20, 7, 13);
$pdf->SetFont('Arial', '', 8);
$pdf->Text(40, 10, utf8_decode('REPÚBLICA BOLIVARIANA DE VENEZUELA'));
$pdf->Text(40, 13, utf8_decode('MINISTERIO DEL PODER POPULAR PARA EL TRABAJO Y SEGURIDAD SOCIAL'));
$pdf->Text(40, 16, utf8_decode('INSTITUTO VENEZOLANO DE LOS SEGUROS SOCIALES'));
$pdf->Text(40, 19, utf8_decode('DIRECCIÓN GENERAL DE FISCALIZACIÓN'));
/*--------------------------------------- HEADER ----------------------------------------------*/
/*-------------------------------- TITULO DEL DOCUMENTO ---------------------------------------*/
$pdf->SetFont('Arial', 'B', 10);
$pdf->setXY(20, 38);
$pdf->SetRightMargin(25.0);
$pdf->MultiCell(0, 4, utf8_decode('ACTA DE INICIO DE PROCEDIMIENTO'), 0, 'C');
/*-------------------------------- TITULO DEL DOCUMENTO ---------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
/*-------------------------------- NUMERO DEL DOCUMENTO ---------------------------------------*/
$pdf->SetFont('Arial', 'B', 10);
$pdf->setXY(20, 30);
$pdf->MultiCell(0, 0, utf8_decode('N° DGF-DFROR-AIP-2015-00XXXX'));
/*-------------------------------- NUMERO DEL DOCUMENTO ---------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
/*-------------------------------- CUERPO DEL DOCUMENTO----------------------------------------*/
$pdf->setXY(20, 50);
$pdf->SetFont('Arial', '', '8');
$pdf->MultiCell(0, 4, utf8_decode('Quien suscribe, _________________________________________________, venezolano, mayor de edad, titular de la cédula de identidad Número__________________, procediendo en mi condición de Servidor Público Actuante, adscrito a la Dirección General de Fiscalización del IVSS, según Resolución de Nombramiento, signada ________________________________________, de fecha ____ de __________ del año____; ampliamente autorizado para este acto según Providencia Administrativa suscrita por el Director General de Fiscalización del IVSS, identificada con las siglas DGF-DFROR-PA-2015-00XXXX, de fecha XX de XXXXXXX del año 2015; por medio del presente acta, se inicia en el domicilio de la sociedad mercantil  XXXXXXXXXXX, identificada con el número patronal XXXXXXXXX, el procedimiento de verificación contenido en los artículos 182, 183, 184, 185 y 186 del Código Orgánico Tributario, a fin de constatar el oportuno cumplimiento de las obligaciones establecidas en la Ley del Seguro Social y su Reglamento General, entre ellas: : Haberse inscrito oportunamente en el Instituto Venezolano de los Seguros Sociales, haber informado si fuere el caso sobre la cesación de actividades, cambios de razón social, traspaso del dominio a cualquier título, y en general, otras circunstancias relativas a las actividades de la empresa, establecimiento, explotación o faena; de igual modo verificar, si el citado empleador, cumplió con la obligación de inscribir a sus trabajadores dentro de los tres (3) días hábiles siguientes al de su ingreso al trabajo, para los trabajadores activos en el período comprendido desde el mes de Febrero 2015 hasta Abril 2015 así como el deber de notificar al Instituto el despido o retiro de los trabajadores dentro de los tres (3) días hábiles siguientes a aquel en el que se produzca tal hecho,  para el período comprendido desde el mes de Febrero 2015  hasta Abril 2015.'));
$pdf->setXY(20, 115);
開發者ID:vanckruz,項目名稱:draftReports,代碼行數:31,代碼來源:acta_inicio_procedimiento.php

示例3: FPDF

define('FPDF_FONTPATH', 'font');
require 'fpdf.php';
include "../connection/dbConnect.php";
$sql = "SELECT * FROM tbl_participants ORDER BY id ASC";
$smt = $con->query($sql);
$numOfRows = $smt->rowCount();
$query = $con->prepare($sql);
$query->execute();
$pdf = new FPDF('P', 'pt', 'Letter');
$pdf->SetFont('Times');
$pdf->AddPage('L');
$pdf->SetAutoPageBreak(false);
$pdf->SetFillColor(170, 170, 170);
//gray
$pdf->setFont("times", "B", "12");
$pdf->setXY(40, 40);
$pdf->Cell(25, 20, "#", 1, 0, "C", 1);
$pdf->Cell(140, 20, "Last Name", 1, 0, "C", 1);
$pdf->Cell(140, 20, "First Name", 1, 0, "C", 1);
$pdf->Cell(140, 20, "Middle Name", 1, 0, "C", 1);
$pdf->Cell(120, 20, "Contact Number", 1, 0, "C", 1);
$pdf->Cell(160, 20, "e-mail", 1, 0, "C", 1);
$y = 60;
$x = 40;
$pdf->setXY($x, $y);
$z = 0;
while ($row = $query->fetch()) {
    $pdf->Cell(25, 20, $z += 1, 1);
    $pdf->Cell(140, 20, iconv('UTF-8', 'windows-1252', $row[3]), 1);
    $pdf->Cell(140, 20, iconv('UTF-8', 'windows-1252', $row[1]), 1);
    $pdf->Cell(140, 20, iconv('UTF-8', 'windows-1252', $row[2]), 1);
開發者ID:nsantiago2719,項目名稱:material-signup,代碼行數:31,代碼來源:userspdf.php

示例4:

 $pdf->setFont('Arial', '', 12);
 $pdf->Cell(20, 15, 'Surname', 0, 0, "L");
 $pdf->setFont('Arial', '', 12);
 $pdf->Cell(10, 0, '', 0, 0, "C");
 $pdf->Cell(40, 15, $surname, 0, 1, "L");
 $pdf->SetFillColor(150, 150, 150);
 $pdf->Rect(40, 90, 114, 0.5, 'F');
 $pdf->setFont('Arial', '', 12);
 $pdf->Cell(20, 5, 'Firstname', 0, 0, "L");
 $pdf->setFont('Arial', '', 12);
 $pdf->Cell(10, 0, '', 0, 0, "C");
 $pdf->Cell(40, 5, $firstname, 0, 1, "L");
 $pdf->SetFillColor(150, 150, 150);
 $pdf->Rect(40, 100, 114, 0.5, 'F');
 // Explora icon
 $pdf->setXY(160, 61);
 $image1 = "logo.png";
 $pdf->Cell(40, 40, $pdf->Image($image1, $pdf->GetX(), $pdf->GetY(), 33.78), 0, 1, 'L', false);
 $pdf->setFont('Arial', '', 12);
 $pdf->Cell(20, 12, 'Lastname', 0, 0, "L");
 $pdf->setFont('Arial', '', 12);
 $pdf->Cell(10, 0, '', 0, 0, "C");
 $pdf->Cell(40, 12, $lastname, 0, 1, "L");
 $pdf->SetFillColor(150, 150, 150);
 $pdf->Rect(40, 109, 114, 0.5, 'F');
 //add new row
 $pdf->Cell(210, 10, '', 0, 20, "C");
 $pdf->setFont('Arial', '', 12);
 $pdf->Cell(20, -13, 'Birthdate', 0, 0, "L");
 $pdf->setFont('Arial', '', 12);
 $pdf->Cell(10, 0, '', 0, 0, "C");
開發者ID:shailshah9,項目名稱:Explora.in,代碼行數:31,代碼來源:sendmail1.php

示例5: FPDF

include "../config/config.php";
include "../pdf/fpdf/fpdf.php";
//include "../barcode/barcode.php";
//include "../barcode/bars.php";
$pdf = new FPDF();
$pdf->Open();
$pdf->addPage();
$pdf->setAutoPageBreak(true);
$pdf->setFont('Arial', '', 12);
$pdf->text(10, 25, 'Tes User DB');
$pdf->Line(10, 31, 198, 31);
$yi = 50;
$ya = 44;
$pdf->setFont('Arial', '', 9);
$pdf->setFillColor(222, 222, 222);
$pdf->setXY(10, $ya);
$pdf->CELL(6, 6, 'ID', 1, 0, 'C', 1);
$pdf->CELL(40, 6, 'Username', 1, 0, 'C', 1);
$pdf->CELL(50, 6, 'Password', 1, 0, 'C', 1);
$ya = $yi + $row;
$sql = "SELECT id, password, username FROM user";
$result = $conn->query($sql);
$i = 1;
$no = 1;
$max = 31;
//$row = 6;
if ($result->num_rows > 0) {
    while ($row = $result->fetch_assoc()) {
        $pdf->setXY(10, $ya);
        $pdf->setFont('arial', '', 9);
        $pdf->setFillColor(255, 255, 255);
開發者ID:ardiqghenatya,項目名稱:invisible-app,代碼行數:31,代碼來源:cetak.php

示例6: foreach

$pdf->Cell(110);
$pdf->Cell(110, 05, 'Email: ' . $supervisor_details->memail, 'R');
$pdf->Ln();
$pdf->Cell(130);
$pdf->Cell(120, 05, 'Zone: ' . $supervisor_details->zoneName, 'R');
$pdf->Ln();
/*********************************display zones******************************************************/
$pdf->Ln();
$pdf->SetX(10);
$pdf->SetFont('times', 'B', 12);
$pdf->Cell(200, 10, "                   Technician Details.                                                          Station .                                           Site.");
$pdf->SetFillColor(255, 140, 0);
$pdf->SetTextColor(255, 255, 255);
$pdf->setFont("times", "B", 9);
$pdf->Ln();
$pdf->setXY(10, 65);
$pdf->Cell(20, 10, "NO:", 1, 0, "L", 1);
// header fields
$pdf->Cell(35, 10, "TECHNICIAN NAME:", 1, 0, "L", 1);
$pdf->Cell(25, 10, "CONTACT NO", 1, 0, "L", 1);
$pdf->Cell(35, 10, "EMAIL ADDRESS", 1, 0, "L", 1);
$pdf->Cell(40, 10, "STATION NAME:", 1, 0, "L", 1);
$pdf->Cell(40, 10, "SITE NAME:", 1, 0, "L", 1);
$y = 75;
$x = 10;
$pdf->setXY($x, $y);
if (is_array($techDetails)) {
    foreach ($techDetails as $tech) {
        $pdf->SetFont('times', '', '9');
        $pdf->SetFillColor(255, 255, 255);
        $pdf->setTextColor(05, 05, 05);
開發者ID:Kemallyson,項目名稱:techmaster,代碼行數:31,代碼來源:individual-supervisor-report.php

示例7: max

     $addr_line_width = $pdf->GetStringWidth($address[$j]);
     if ($addr_line_width > $max_addr_width) {
         $max_addr_width = $addr_line_width;
     }
 }
 $max_line_width = max($name_width, $max_addr_width);
 // Center the longest line, and make everything else left justified to that
 $left_x = $start_x + $col * ($x_size + $row_sep) + ($x_size - $max_line_width) / 2;
 $pdf->SetLeftMargin($left_x);
 // Draw the name line
 $pdf->SetFont("Astrud", "", NAME_SIZE_PTS);
 //$name_width = $pdf->GetStringWidth($name_string);
 //$name_x = $start_x + ($col * ($x_size + $row_sep)) + (($x_size - $name_width) / 2);
 $name_y = $start_y + $row * $y_size + TOP_MARGIN_IN;
 //$pdf->setXY($name_x, $name_y);
 $pdf->setXY($left_x, $name_y);
 $pdf->write($name_height, $name_string);
 // Draw the address lines
 $pdf->SetFont("ufonts.com_century-gothic", "", ADDR_SIZE_PTS);
 //$address = create_address($parties[$i]);
 // Determine the max address line width
 /*
 $max_addr_width = $pdf->GetStringWidth($address[0]);
 for ($j = 1; $j < count($address); ++$j) {
 	$addr_line_width = $pdf->GetStringWidth($address[$j]);
 	if ($addr_line_width > $max_addr_width) {
 		$max_addr_width = $addr_line_width;
 	}
 }
 $addr_x = $start_x + ($col * ($x_size + $row_sep)) + (($x_size - $max_addr_width) / 2);
 */
開發者ID:ragnerrok,項目名稱:agnervsbamberger,代碼行數:31,代碼來源:generate_address_labels.php

示例8: date

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if ($datefrom == NULL || $dateto == NULL) {
    $starting = "REVERSED TRANSACTIONS POSTED ON: " . date("F j, Y, g:i a");
} else {
    $starting = "REVERSED TRANSACTIONS AS FROM " . $datefrom . " TO " . $dateto;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// $this->Image('images/new.png',10,8,33);
$pdf->Image('../images/logo.png', 180, 10, -300);
$pdf->SetFont('Arial', 'B', 11);
$pdf->SetTextColor(204, 102, 0);
$pdf->Cell(40, 10, '     ' . $starting . ' AT ' . $branchname . '  BRANCH');
// Add date report ran
$pdf->SetFont('HELVETICA', 'B', 10);
$date = date("F j, Y");
$pdf->Cell(40, 30, 'Report date: ' . $date . '                                                 REPORT BY: ' . $USER);
$pdf->SetDrawColor(0, 0, 0);
//black
//table header
$pdf->SetFillColor(102, 51, 0);
$pdf->SetTextColor(252, 252, 252);
$pdf->setFont("Arial", "B", "11");
$pdf->setXY(10, 40);
$pdf->Cell(22, 10, "TRANS ID:", 1, 0, "L", 1);
// my field headers
$pdf->Cell(25, 10, "MEMBER #:", 1, 0, "L", 1);
$pdf->Cell(55, 10, "FULL NAMES", 1, 0, "L", 1);
$pdf->Cell(20, 10, "REF NO:", 1, 0, "L", 1);
$pdf->Cell(30, 10, "TRANS DATE", 1, 0, "L", 1);
$pdf->Cell(30, 10, "FUND NAME", 1, 0, "L", 1);
$pdf->Cell(30, 10, "REASON", 1, 0, "L", 1);
$pdf->Cell(25, 10, "AMOUNT", 1, 0, "L", 1);
開發者ID:Kemallyson,項目名稱:Wizglobal,代碼行數:31,代碼來源:cancelled_rpt.php

示例9: makepdf

    public function makepdf()
    {
        global $user;
        // Get required files.
        require_once 'others/fpdf/fpdf.php';
        // Set some document variables
        $author = "eduCloud";
        $x = 35;
        $text = <<<EOT
Hello
EOT;
        // Create fpdf object
        $pdf = new FPDF('P', 'pt', 'Letter');
        // Set base font to start
        $pdf->SetFont('Arial', 'B', 16);
        // Add a new page to the document
        $pdf->addPage();
        $pdf->setLeftMargin($x);
        //page border
        $pdf->Line(35, 30, 35, 750);
        $pdf->Line(35, 30, 575, 30);
        $pdf->Line(575, 30, 575, 750);
        $pdf->Line(575, 750, 35, 750);
        //end of page border
        // Set the x,y coordinates of the cursor
        $pdf->SetXY($x + 20, 40);
        // Write 'Simple PDF' with a line height of 1 at the current position
        $pdf->Write(25, 'Employee Details');
        $pdf->Image($_SERVER['DOCUMENT_ROOT'] . '/cloud/images/school_logo.jpg', 500, 35, 50, 50, 'JPG');
        // Reset the font
        // Reset font, color, and coordinates
        $pdf->SetFont('Arial', '', 12);
        $pdf->SetTextColor(0, 0, 0);
        $pdf->SetLeftMargin($x + 50);
        $pdf->setXY($x + 50, 90);
        global $objPDO;
        require_once $_SERVER['DOCUMENT_ROOT'] . '/cloud/model/teacher_class.php';
        $record = new Teacher($objPDO);
        if ($user->checkAdmin()) {
            $eid = $_GET['uid'];
        } else {
            $student = new Student($objPDO, $user->getuserId());
            $eid = $student->getID();
        }
        $record->loadByUserId($eid);
        // Write out a long text blurb.
        //$array=$record->getAsArray();
        //$x=0;
        /* TEMPLATE 1 DESIGN*/
        $pdf->SetFont('Arial', '', 8);
        $pdf->setFillColor(255, 255, 255);
        $pdf->cell(200, 20, 'Employee Id (reference) : ' . $record->getTeacherId(), 0, 1, 'L', true);
        $pdf->SetFont('Arial', '', 12);
        $pdf->setFillColor(50, 50, 50);
        $pdf->setTextColor(255, 255, 255);
        $pdf->cell(450, 20, 'Employee Details', 0, 1, 'C', true);
        $pdf->setTextColor(0, 0, 0);
        $pdf->setFillColor(221, 221, 221);
        $pdf->cell(200, 20, 'Employee Name', 0, 0, 'C', true);
        $pdf->cell(250, 20, $record->getName(), 0, 1, 'C', true);
        $pdf->setFillColor(255, 255, 255);
        $pdf->cell(200, 20, 'Qualification', 0, 0, 'C', true);
        $pdf->cell(250, 20, $record->getQualification(), 0, 1, 'C', true);
        require_once $_SERVER['DOCUMENT_ROOT'] . '/cloud/model/subject_class.php';
        $subject_id = new Subject($objPDO);
        $subject_id->setID($record->getSubjectId());
        $pdf->setFillColor(221, 221, 221);
        $pdf->cell(200, 20, 'Subject', 0, 0, 'C', true);
        $pdf->cell(250, 20, $subject_id->getName(), 0, 1, 'C', true);
        $pdf->setFillColor(255, 255, 255);
        $pdf->cell(200, 20, 'Date Of Birth', 0, 0, 'C', true);
        $pdf->cell(250, 20, $record->getDateOfBirth(), 0, 1, 'C', true);
        $pdf->setFillColor(221, 221, 221);
        $pdf->cell(200, 20, 'Gender', 0, 0, 'C', true);
        $pdf->cell(250, 20, ucfirst($record->getGender()), 0, 1, 'C', true);
        $pdf->setFillColor(255, 255, 255);
        $pdf->cell(200, 20, 'Blood Group', 0, 0, 'C', true);
        $pdf->cell(250, 20, $record->getBloodGroup(), 0, 1, 'C', true);
        $pdf->setFillColor(255, 255, 255);
        $pdf->cell(200, 20, '', 0, 0, 'C', true);
        $pdf->cell(250, 20, '', 0, 1, 'C', true);
        $pdf->setFillColor(50, 50, 50);
        $pdf->setTextColor(255, 255, 255);
        $pdf->cell(450, 20, 'Contact Details', 0, 1, 'C', true);
        $pdf->setTextColor(0, 0, 0);
        $pdf->setFillColor(221, 221, 221);
        $pdf->cell(200, 20, 'Correspondence Address', 0, 0, 'C', true);
        $pdf->cell(250, 20, $record->getCorrespondenceAddressLine1(), 0, 1, 'C', true);
        $pdf->cell(200, 20, '', 0, 0, 'C', true);
        $pdf->cell(250, 20, $record->getCorrespondenceAddressLine2(), 0, 1, 'C', true);
        $pdf->setFillColor(255, 255, 255);
        $pdf->cell(200, 20, 'City', 0, 0, 'C', true);
        $pdf->cell(250, 20, $record->getCorrespondenceCity(), 0, 1, 'C', true);
        $pdf->setFillColor(221, 221, 221);
        $pdf->cell(200, 20, 'State', 0, 0, 'C', true);
        $pdf->cell(250, 20, $record->getCorrespondenceState(), 0, 1, 'C', true);
        $pdf->setFillColor(255, 255, 255);
        $pdf->cell(200, 20, 'Pincode', 0, 0, 'C', true);
        $pdf->cell(250, 20, $record->getCorrespondencePincode(), 0, 1, 'C', true);
        $pdf->setFillColor(221, 221, 221);
//.........這裏部分代碼省略.........
開發者ID:srinivasans,項目名稱:educloud,代碼行數:101,代碼來源:teacherController.php

示例10: Fiscal

$pdf->AddPage();
$pdf->Image('../../public_html/imagenes/logoclaro.png', 40, 100, 130);
$pdf->SetTitle("Notificación al denunciante", true);
/*--------------------------------------- HEADER ----------------------------------------------*/
$pdf->Image('../../public_html/imagenes/logoivss.png', 20, 7, 13);
$pdf->SetFont('Arial', '', 8);
$pdf->Text(40, 10, utf8_decode('REPÚBLICA BOLIVARIANA DE VENEZUELA'));
$pdf->Text(40, 13, utf8_decode('MINISTERIO DEL PODER POPULAR PARA EL TRABAJO Y SEGURIDAD SOCIAL'));
$pdf->Text(40, 16, utf8_decode('INSTITUTO VENEZOLANO DE LOS SEGUROS SOCIALES'));
$pdf->Text(40, 19, utf8_decode('DIRECCIÓN GENERAL DE FISCALIZACIÓN'));
/*--------------------------------------- HEADER ----------------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
/*-------------------------------- TITULO DEL DOCUMENTO ---------------------------------------*/
$pdf->SetFont('Arial', 'B', 10);
$pdf->setXY(20, 38);
$pdf->SetRightMargin(25.0);
$pdf->MultiCell(0, 4, utf8_decode('ACTA DE REQUERIMIENTO DE DOCUMENTOS'), 0, 'C');
/*-------------------------------- TITULO DEL DOCUMENTO ---------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
/*-------------------------------- NUMERO DEL DOCUMENTO ---------------------------------------*/
$pdf->SetFont('Arial', 'B', 10);
$pdf->setXY(20, 30);
$pdf->MultiCell(0, 0, utf8_decode('N° DGF-DFROR-AIP-2015-00XXXX'));
/*-------------------------------- NUMERO DEL DOCUMENTO ---------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
/*-------------------------------- CUERPO DEL DOCUMENTO----------------------------------------*/
$pdf->setXY(20, 50);
$pdf->SetFont('Arial', '', '8');
$pdf->MultiCell(0, 4, utf8_decode('Hoy, _______________________________________encontrándonos en el domicilio de la sociedad mercantil ____________________, identificada con el Registro de Información Fiscal (RIF) número __________________ e inscrita en el IVSS, bajo el número patronal _____________, se levanta la presente Acta de Requerimiento de Documentos, a fin de solicitar al aludido empleador, la documentación necesaria para llevar a cabo el procedimiento de verificación iniciado a través del Acta de Inicio de Procedimiento, identificada con la nomenclatura DGF-DFROR-AIP-2015-000001, de fecha ___ de _________ de 2015, en atención a ello, la citada sociedad mercantil, deberá entregar al Servidor Público Actuante debidamente autorizado, mediante Providencia Administrativa signada DGF-DFROR-PA-2015-000001, de fecha ____ de __________ de 2015, la siguiente documentación:'));
$pdf->SetFont('Arial', 'B', '8');
開發者ID:vanckruz,項目名稱:draftReports,代碼行數:31,代碼來源:acta_requerimiento_documentos.php

示例11: array

$pdf->AddPage();
$codes = array("3ZRCT5L5", "V9K4NFKP", "F4RUH3CX", "PE99XUGV", "7RAA842U", "TSVULCL7", "W8J9TQ34", "49Z6SJD8", "ULLK3EC7", "2DXRNWWQ", "PFXB3X33", "2BSGC6VH", "K7APZR9J", "TBBY545M", "GXXR2UDP", "EP242HFK", "B5BPXTW7", "HAB7G93W", "R7PE4BJR", "FJ8KKCBD", "ACZDZP3Z", "EKH2FNJD", "7MZLG2CH", "6ERVQJUA", "PPSFDAJV", "RGABLEJW", "JJ65C52Q", "3B6FKAUB", "VQSZTZZ8", "3ZHFCKE9", "V9KYR97J", "25PTMJJZ", "6H4C9Z3Z", "D62C6UTT", "UVB4G8W6", "2Q37LUAA", "BLLB96WG", "URY895AA", "P6TNEMLJ", "QAPC92JF", "F5XBA9Z7", "Q3PPWR56", "4XSWBBY7", "DXFTMAXV", "3JYHCKXK", "KDXQ7AA2", "NJ7MPYWC", "GWQ9DYMF", "DM2CZWGJ", "GVHQWH5H", "WE6TAMSK", "KCFJPR9N", "4C48VR7F", "SP2J685S", "ACE7NM2C", "LEMXES7T", "AVEDQQ3V", "UDESHXN3", "3AEZM4Z2", "WUWFC4JC", "L8BUXGHD");
$start_x = 0.25;
$start_y = 0.5625;
$x_size = 1.75;
$y_size = 0.66;
$row_sep = 0.3125;
$cells_per_row = 15;
$cells_per_col = 4;
$cells_per_page = 60;
$cell = 0;
$page = 0;
for ($cell = 0; $cell < count($codes); ++$cell) {
    $newpage = intdiv($cell, $cells_per_page);
    if ($newpage > $page) {
        $pdf->AddPage();
        $page = $newpage;
    }
    $page_cell = $cell - $page * $cells_per_page;
    $row = $page_cell % 15;
    $col = intdiv($page_cell, 15);
    // Draw the party id
    $pdf->SetFont("ufonts.com_century-gothic", "", 8);
    $pdf->setXY($col * ($x_size + $row_sep), $start_y + $row * $y_size);
    $pdf->cell(0.25, 0.66, $cell + 1, 0, 0, "C", false);
    // Draw the code
    $pdf->SetFont("ufonts.com_century-gothic", "", 16);
    $pdf->setXY($start_x + $col * ($x_size + $row_sep), $start_y + $row * $y_size);
    $pdf->cell($x_size, $y_size, $codes[$cell], 0, 0, "C", false);
}
$pdf->Output();
開發者ID:ragnerrok,項目名稱:agnervsbamberger,代碼行數:31,代碼來源:generate_code_labels.php

示例12: FPDF

$pdf = new FPDF('P');
$pdf->AddPage();
$pdf->Image('../../public_html/imagenes/logoclaro.png', 40, 60, 120);
$pdf->SetTitle("Notificación al denunciante", true);
/*--------------------------------------- HEADER ----------------------------------------------*/
$pdf->Image('../../public_html/imagenes/logoivss.png', 20, 7, 13);
$pdf->SetFont('Arial', '', 6);
$pdf->Text(40, 10, utf8_decode('REPÚBLICA BOLIVARIANA DE VENEZUELA'));
$pdf->Text(40, 13, utf8_decode('MINISTERIO DEL PODER POPULAR PARA EL TRABAJO Y SEGURIDAD SOCIAL'));
$pdf->Text(40, 16, utf8_decode('INSTITUTO VENEZOLANO DE LOS SEGUROS SOCIALES'));
$pdf->Text(40, 19, utf8_decode('DIRECCIÓN GENERAL DE FISCALIZACIÓN'));
/*--------------------------------------- HEADER ----------------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
/*-------------------------------- TITULO DEL DOCUMENTO ---------------------------------------*/
$pdf->SetFont('Arial', 'B', 10);
$pdf->setXY(20, 38);
$pdf->SetRightMargin(25.0);
$pdf->MultiCell(0, 4, utf8_decode('PROVIDENCIA ADMINISTRATIVA'), 0, 'C');
/*-------------------------------- TITULO DEL DOCUMENTO ---------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
/*-------------------------------- NUMERO DEL DOCUMENTO ---------------------------------------*/
$pdf->SetFont('Arial', 'B', 10);
$pdf->setXY(20, 30);
$pdf->MultiCell(0, 0, utf8_decode('N° DGF-DFROR-AIP-2015-00XXXX'));
/*-------------------------------- NUMERO DEL DOCUMENTO ---------------------------------------*/
/*---------------------------------------------------------------------------------------------*/
/*-------------------------------- CUERPO DEL DOCUMENTO----------------------------------------*/
$pdf->setXY(20, 50);
$pdf->SetFont('Arial', '', '8');
$pdf->MultiCell(0, 4, utf8_decode('Quien suscribe, Jesús Eduardo Tovar Jiménez, venezolano, mayor de edad, civilmente hábil, de este domicilio y titular de la cédula de identidad número V-1.740.259, procediendo en mi condición de Director General de Fiscalización, carácter que consta en Resolución suscrita por el Presidente del IVSS, signada DGRHAP-DAPDRC/10 Número 002093, de fecha 03 de Mayo de 2010 y en uso de las facultades y atribuciones delegadas mediante Providencia Administrativa número 010, de fecha 09 de Agosto de 2010, publicada en la Gaceta Oficial de la República Bolivariana de Venezuela Número 39.551, de fecha 12 de Noviembre del año 2010; por medio del presente acto, designo y autorizo a los Servidores Públicos, ciudadanos:  Ana María Higuera Arévalo, V-15.022.121; Carmen Luisa Bravo Muñoz, V- 14.394.714; Cecilio Enrique Zerpa López, V-13.574.202; Domingo José Ramirez Reyes, V-13.836.194; Eduardo José Morillo Alcalá,  V-18.129.838; Jesús Antonio Vasquez; V-15.586.467; Johana De La Trinidad Malavé, V-10.810.104; Karla Heleydenys María Origûen Gerdel, V-17.389.422; Luis Miguel Marquez Blanco, V-19.754.270; María Isabel Villa Salas,    V-14.287.554; Marialejandra Rodríguez Sosa, V-14.755.807; Marlene De La Cruz Márquez Gil, V-11.555.032; Patricia Del Valle Morales Quereigua, V-15.549.481; Pedro Alexander Alarcón Velasquez, V-16.381.443; Rafael Antonio Gintili Anderson, V-17.705.281, Sandra Milena Celis Soto, V-12.878.449; Sergio Esteban Inojosa Alcalá, V-6.499.959; Ronald Rafael Mora Briceño, V-14.680.782 y Yamileth Aixa Escalona, V-13.533.413; para que de conformidad a lo dispuesto en los artículos 182, 183, 184, 185 y 186 del Código Orgánico Tributario, verifiquen el oportuno cumplimiento de las Obligaciones establecidas en la Ley del Seguro Social, por parte de la sociedad mercantil XXXXXXXXXXXXXXXXXXXXXX inscrita en el IVSS bajo el número patronal XXXXXXXXXXXX,  entre ellas: Haberse inscrito oportunamente en el Instituto Venezolano de los Seguros Sociales, haber informado si fuere el caso sobre la cesación de actividades, cambios de razón social, traspaso del dominio a cualquier título, y en general, otras circunstancias relativas a las actividades de la empresa, establecimiento, explotación o faena; de igual modo verificar, si el citado empleador, cumplió con la obligación de inscribir a sus trabajadores dentro de los tres (3) días hábiles siguientes al de su ingreso al trabajo, para los trabajadores activos en el período comprendido desde el mes de Febrero 2015 hasta Abril 2015 así como el deber de notificar al Instituto el despido o retiro de los trabajadores dentro de los tres (3) días hábiles siguientes a aquel en el que se produzca tal hecho,  para el período comprendido desde el mes de Febrero 2015 hasta Abril 2015.'));
$pdf->setXY(20, 145);
開發者ID:vanckruz,項目名稱:draftReports,代碼行數:31,代碼來源:providencia_administrativa.php

示例13: date

///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
if ($from == NULL || $to == NULL) {
    $starting = "SUMMARY OF TRANSACTIONS ON: " . date("F j, Y, g:i a");
} else {
    $starting = "SUMMARY OF TRANSACTIONS AS FROM " . $from . " TO " . $to . "";
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//$pdf->Ln();
//$pdf->Cell(50, 10);
$pdf->SetFont('times', 'B', 12);
$pdf->SetTextColor(204, 102, 0);
$pdf->Cell(50, 10, '' . $starting);
// Add date report ran
$pdf->SetFont('HELVETICA', 'B', 10);
$date = date("F j, Y");
$pdf->Cell(40, 30, 'Report date: ' . $date . '     											REPORT BY: ' . $USER . '');
$pdf->SetDrawColor(0, 0, 0);
//black
//table header
$pdf->SetFillColor(102, 51, 0);
$pdf->SetTextColor(252, 252, 252);
$pdf->setFont("Arial", "B", "9");
$pdf->setXY(20, 40);
$pdf->Cell(40, 10, "FUND:", 1, 0, "L", 1);
// header fields
$pdf->Cell(50, 10, "TRANSACTION TYPE:", 1, 0, "L", 1);
$pdf->Cell(40, 10, "AMOUNT:", 1, 0, "L", 1);
$y = 50;
$x = 20;
$pdf->setXY($x, $y);
$pdf->setFont("times", "", "8");
開發者ID:Kemallyson,項目名稱:Wizglobal,代碼行數:31,代碼來源:summary_rpt.php

示例14: array

$Educacional = array(
    "lee_escribe" => $educacionalTabla["lee_escribe"],
    "mas_nivel_educacional" => utf8_decode($educacionalTabla["mas_nivel_educacional"]),
    "titulo_alcanzado" => utf8_decode($educacionalTabla["Carrera"]["descripcion"]),
    "titulo_posgrado" => utf8_decode($educacionalTabla["titulo_posgrado"]),
    "profesion" => utf8_decode($educacionalTabla["profesion"]),
    "ocupacion" => utf8_decode($educacionalTabla["ocupacion"]),
    "cambios" => utf8_decode($educacionalTabla["cambios"])
);


$pdf = new FPDF();
$pdf->SetMargins(0, 0);
$pdf->AddPage('P', 'Legal');
$pdf->SetFont('Arial', '', 10);
$pdf->setXY(30, 12);
$pdf->Write(10, $Ente["dni"]);

$pdf->setXY(105, 12);
$pdf->Write(10, $Ente["apellido"]);
$pdf->setXY(17, 19);
$pdf->Write(10, $fecha_nacimiento[2]);
$pdf->setXY(45, 19);
$pdf->Write(10, $Ente["sexo"]);
$pdf->setXY(78, 19);
$pdf->Write(10, $Ente["nombre"]);
$pdf->setXY(18, 39);
$pdf->Write(10, $Ente["fecha_nacimiento"]["dia"]);
$pdf->setXY(27, 39);
$pdf->Write(10, $Ente["fecha_nacimiento"]["mes"]);
$pdf->setXY(35, 39);
開發者ID:nahue,項目名稱:Siefu,代碼行數:31,代碼來源:generarPDF.php

示例15: FPDF

define('FPDF_FONTPATH', 'font/');
require 'fpdf.php';
$pdf = new FPDF();
// เพิ่มฟอนต์ภาษาไทยเข้ามา ตัวธรรมดา กำหนด ชื่อ เป็น angsana
$pdf->AddFont('angsana', '', 'angsa.php');
// เพิ่มฟอนต์ภาษาไทยเข้ามา ตัวหนา  กำหนด ชื่อ เป็น angsana
$pdf->AddFont('angsana', 'B', 'angsab.php');
// เพิ่มฟอนต์ภาษาไทยเข้ามา ตัวหนา  กำหนด ชื่อ เป็น angsana
$pdf->AddFont('angsana', 'I', 'angsai.php');
// เพิ่มฟอนต์ภาษาไทยเข้ามา ตัวหนา  กำหนด ชื่อ เป็น angsana
$pdf->AddFont('angsana', 'BI', 'angsaz.php');
//สร้างหน้าเอกสาร
$pdf->AddPage();
// กำหนดฟอนต์ที่จะใช้  อังสนา ตัวธรรมดา ขนาด 12
$pdf->SetFont('angsana', '', 12);
// พิมพ์ข้อความลงเอกสาร
$pdf->setXY(10, 10);
$pdf->MultiCell(0, 0, iconv('UTF-8', 'cp874', 'อังสนา ตัวธรรมดา ขนาด 12'));
/*$pdf->SetFont('angsana','B',16);
$pdf->setXY( 10, 20  );
$pdf->MultiCell( 0  , 0 , iconv( 'UTF-8','cp874' , 'อังสนา ตัวหนา ขนาด 16' )  );
*/
/*$pdf->SetFont('angsana','I',24);
$pdf->setXY( 10, 30  );
$pdf->MultiCell( 0  , 0 , iconv( 'UTF-8','cp874' , 'อังสนา ตัวเอียง ขนาด 24' )  );
*/
/*$pdf->SetFont('angsana','BI',32);
$pdf->setXY( 10, 40  );
$pdf->MultiCell( 0  , 0 , iconv( 'UTF-8','cp874' , 'อังสนา ตัวหนาเอียง ขนาด 32' )  );
*/
$pdf->Output();
開發者ID:jutturong,項目名稱:vancom3,代碼行數:31,代碼來源:exam_2.php


注:本文中的FPDF::setXY方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。