<!DOCTYPE html>
<html lang="es">
<head>
<META http-equiv=Content-Type content="text/html; charset=UTF-8">
<title>Acta de Escrutinio</title>
<link rel="stylesheet" media="screen" href="styles.css" >
<!�[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk
/html5.js"></script>
<![endif]�>
</head>
<?php
include('class.ezpdf.php');
$pdf =& new Cezpdf('a4');
$pdf->selectFont('fonts/Helvetica.afm');
$datacreator = array (
'Title'=>'Acta de Escrutinio',
'Author'=>'Universidad de los LLanos',
'Subject'=>'Acta de Escrutinio',
'Creator'=>'Universidad de los LLanos',
'Producer'=>'Universidad de los LLanos'
);
$pdf->addInfo($datacreator);
//$pdf->ezText(" <b><a href="">ESTE ES EL ID DEL DOCENTE:</a></b> ".$id_docente,12);$pdf->ezText("\n",4);
$pdf->ezStartPageNumbers(300,20,12,'','',1);
$text_option=array('justification'=>'center',20);
$text_option2=array('justification'=>'center');
$tabla3 = array(
'showHeadings'=>1,
'shaded'=>1,
'showLines'=>1,
'colGap'=>2,
'xOrientation'=>'center',
'cols'=>array(
"pue" => array('justification'=>'center', 'width' => '140'),
"mes" => array('justification'=>'center', 'width' => '100')));
$tabla1 = array(
'showHeadings'=>1,
'shaded'=>1,
'showLines'=>1,
'colGap'=>2,
'xOrientation'=>'center',
'cols'=>array(
"hor" => array('justification'=>'center', 'width' => '70'),
"lun" => array('justification'=>'center', 'width' => '50'),
"mar" => array('justification'=>'center', 'width' => '50'),
"mie" => array('justification'=>'center', 'width' => '60'),
"jue" => array('justification'=>'center', 'width' => '50'),
"vie" => array('justification'=>'center', 'width' => '50'),
"sab" => array('justification'=>'center', 'width' => '50')
));
$tabla2 = array(
'showHeadings'=>1,
'shaded'=>1,
'showLines'=>1,
'colGap'=>2,
'xOrientation'=>'center',
'cols'=>array(
"con" => array('justification'=>'center', 'width' => '120'),
"curso" => array('justification'=>'center', 'width' => '80'),
"lug" => array('justification'=>'center', 'width' => '100'),
"hor" => array('justification'=>'center', 'width' => '70'),
"lun" => array('justification'=>'center', 'width' => '30'),
"mar" => array('justification'=>'center', 'width' => '30'),
"mie" => array('justification'=>'center', 'width' => '30'),
"jue" => array('justification'=>'center', 'width' => '30'),
"vie" => array('justification'=>'center', 'width' => '30'),
"sab" => array('justification'=>'center', 'width' => '30')));
$tabla4 = array(
'showHeadings'=>1,
'shaded'=>1,
'showLines'=>1,
'colGap'=>2,
'xOrientation'=>'center',
'cols'=>array(
"req" => array('justification'=>'left', 'width' => '350'),
"cum" => array('justification'=>'center', 'width' => '70'),
"ncum" => array('justification'=>'center', 'width' => '70')));
$tabla5 = array(
'showHeadings'=>1,
'shaded'=>1,
'showLines'=>1,
'colGap'=>2,
'xOrientation'=>'center',
'cols'=>array(
"sel" => array('justification'=>'left', 'width' => '120'),
"si" => array('justification'=>'center', 'width' => '70'),
"no" => array('justification'=>'center', 'width' => '70')));
$tabla6 = array(
'showHeadings'=>1,
'shaded'=>1,
'showLines'=>1,
'colGap'=>2,
'xOrientation'=>'center',
'cols'=>array(
"rev" => array('justification'=>'left', 'width' => '200'),
"fec" => array('justification'=>'center', 'width' => '70')));
$tabla7 = array(
'showHeadings'=>1,
'shaded'=>1,
'showLines'=>1,
'colGap'=>2,
'xOrientation'=>'center',
'cols'=>array(
"rev" => array('justification'=>'left', 'width' => '240'),
"fec" => array('justification'=>'center', 'width' => '70')));
$options = array( 'shadeCol'=>array(0.9,0.9,0.9),
'xOrientation'=>'center',
'width'=>500);
$centrar=array('xOrientation'=>'center');
//$pdf->addPngFromFile("http://actualizacion.unillanos.edu.co/monitores/encamonitor.png");
$pdf->ezText("<b>ACTA DE ESCRUTINIO DEL JURADO DE VOTACION \n</b>",10);
$pdf->ezText("\n",4);
$pdf->ezText("<b>ELECCI�N DEL REPRESENTANTE DE LOS TRABAJADORES ANTE EL COMITE DE CONVIVENCIA LABORAL \n</b>",10);
$pdf->ezText("\n",4);
$pdf->ezText("<b>FECHA: </b>5 DE FEBRERO DE 2021 \n",9);
//$pdf->ezText("<b>Numero: </b>$numero_doc \n",9);
$pdf->ezText("<b>HORARIO: </b>8 am A 4 pm \n",9);
//$pdf->ezText("<b>Apellido: </b>$p_apellido $s_apellido \n",9);
//$pdf->ezText("<b>Codigo: </b>$codigo \n",9);
$data3[] = array('pue'=>'1', 'mes'=>'Virtual');
$titles3 = array('pue'=>'<b>PUESTO</b>', 'mes'=>'<b>MESA N�</b>');
$pdf->ezTable($data3,$titles3,'',$tabla3);
$pdf->ezText("\n",6);
$pdf->ezText(" <b>JURADO: _______________________________</b>",12,$text_option);
$pdf->ezText("\n",4);
$pdf->ezText("\n",4);
$pdf->ezText("<b>ANGELICA MARIA VELASQUEZ CUBIDEZ\n</b>",10);
ob_end_clean();
$pdf->ezStream();
$pdf->ezStopPageNumbers();
$output = $pdf->ezOutput();
//file_put_contents("actas/".$consecutivo.".pdf", $output);
?>
</html>