Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/07/2011, 17:35
Avatar de jmacc
jmacc
 
Fecha de Ingreso: marzo-2007
Ubicación: Mexico
Mensajes: 94
Antigüedad: 17 años, 1 mes
Puntos: 6
Respuesta: Cómo manipular la clase FPDF

Ejemplo de Codigo:
Código PHP:
Ver original
  1. class PDF_unique extends TablePDF
  2. {
  3. function PrintEncabezadoEditable($label, $lin =1, $size=189,$aling='C', $ancho=3)
  4. {
  5.     $rows = $lin * $ancho;
  6.     //$this->SetFont('TheSansSemiBold-Plain','',7);
  7.     $this->SetFillColor(0,0,0);
  8.     $this->SetTextColor(999,999,999);
  9.     $this->Cell($size,$rows,$label,1,0,$aling,1,0);
  10. }
  11. }