PHP - modificar pdf orientación

 
Vista:

modificar pdf orientación

Publicado por enrique (1 intervención) el 12/12/2018 07:03:23
buenas noches tengo un problema estoy trabajando en php y quisiera cambiarle la orientacion a mi pdf por que me lo imprime en vertical y los campos no me alcanzan

archivo:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
//Activamos el almacenamiento en el buffer
ob_start();
if (strlen(session_id()) < 1)
  session_start();
 
if (!isset($_SESSION["nombre"]))
{
  echo 'Debe ingresar al sistema correctamente para visualizar el reporte';
}
else
{
if ($_SESSION['transacciones']==1)
{
 
//Inlcuímos a la clase PDF_MC_Table
require('PDF_MC_Table.php');
 
//Instanciamos la clase para generar el documento pdf
$pdf=new PDF_MC_Table();
 
//Agregamos la primera página al documento pdf
$pdf->AddPage();
 
//Seteamos el inicio del margen superior en 25 pixeles 
$y_axis_initial = 25;
 
//Seteamos el tipo de letra y creamos el título de la página. No es un encabezado no se repetirá
$pdf->SetFont('Arial','B',10);
 
$pdf->Cell(40,6,'',0,0,'C');
$pdf->Cell(100,6,'Reporte de Transacciones',1,0,'C');
$pdf->Ln(10);
 
//Creamos las celdas para los títulos de cada columna y le asignamos un fondo gris y el tipo de letra
$pdf->SetFillColor(232,232,232);
$pdf->SetFont('Arial','B',8);
$pdf->Cell(25,6,'id_transaccion',1,0,'C',1);
$pdf->Cell(35,6,('id_tipo_transaccion'),1,0,'C',1);
$pdf->Cell(20,6,('id_rsocial'),1,0,'C',1);
$pdf->Cell(20,6,'id_promotor',1,0,'C',1);
$pdf->Cell(30,6,('rfc'),1,0,'C',1);
$pdf->Cell(15,6,('concepto'),1,0,'C',1);
$pdf->Cell(15,6,('subtotal'),1,0,'C',1);
$pdf->Cell(15,6,('monto'),1,0,'C',1);
$pdf->Ln(10);
 
//Comenzamos a crear las filas de los registros según la consulta mysql
require_once "../modelos/Transacciones.php";
$transacciones = new Transacciones();
 
$rspta = $transacciones->listar();
 
//Implementamos las celdas de la tabla con los registros a mostrar
$pdf->SetWidths(array(25,35,20,20,30,15,15,15));
 
while($reg= $rspta->fetch_object())
{
    $id_transaccion = $reg->id_transaccion;
    $id_tipo_transaccion = $reg->id_tipo_transaccion;
    $id_rsocial = $reg->id_rsocial;
    $id_promotor = $reg->id_promotor;
    $rfc =$reg->rfc;
    $concepto =$reg->concepto;
    $subtotal =$reg->subtotal;
    $monto =$reg->monto;
 
 
    $pdf->SetFont('Arial','',10);
    $pdf->Row(array($id_transaccion,$id_tipo_transaccion,$id_rsocial,$id_promotor,$rfc,$concepto,$subtotal,$monto));
}
 
//Mostramos el documento pdf
$pdf->Output();
}
else
{
  echo 'No tiene permiso para visualizar el reporte';
}
 
}
ob_end_flush();
?>

archivo2:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
require('../fpdf181/fpdf.php');
 
class PDF_MC_Table extends FPDF
{
var $widths;
var $aligns;
 
function SetWidths($w)
{
    //Set the array of column widths
    $this->widths=$w;
}
 
function SetAligns($a)
{
    //Set the array of column alignments
    $this->aligns=$a;
}
 
function Row($data)
{
    //Calculate the height of the row
    $nb=0;
    for($i=0;$i<count($data);$i++)
        $nb=max($nb,$this->NbLines($this->widths[$i],$data[$i]));
    $h=5*$nb;
    //Issue a page break first if needed
    $this->CheckPageBreak($h);
    //Draw the cells of the row
    for($i=0;$i<count($data);$i++)
    {
        $w=$this->widths[$i];
        $a=isset($this->aligns[$i]) ? $this->aligns[$i] : 'L';
        //Save the current position
        $x=$this->GetX();
        $y=$this->GetY();
        //Draw the border
        $this->Rect($x,$y,$w,$h);
        //Print the text
        $this->MultiCell($w,5,$data[$i],0,$a);
        //Put the position to the right of the cell
        $this->SetXY($x+$w,$y);
    }
    //Go to the next line
    $this->Ln($h);
}
 
function CheckPageBreak($h)
{
    //If the height h would cause an overflow, add a new page immediately
    if($this->GetY()+$h>$this->PageBreakTrigger)
        $this->AddPage($this->CurOrientation);
}
 
function NbLines($w,$txt)
{
    //Computes the number of lines a MultiCell of width w will take
    $cw=&$this->CurrentFont['cw'];
    if($w==0)
        $w=$this->w-$this->rMargin-$this->x;
    $wmax=($w-2*$this->cMargin)*1000/$this->FontSize;
    $s=str_replace("\r",'',$txt);
    $nb=strlen($s);
    if($nb>0 and $s[$nb-1]=="\n")
        $nb--;
    $sep=-1;
    $i=0;
    $j=0;
    $l=0;
    $nl=1;
    while($i<$nb)
    {
        $c=$s[$i];
        if($c=="\n")
        {
            $i++;
            $sep=-1;
            $j=$i;
            $l=0;
            $nl++;
            continue;
        }
        if($c==' ')
            $sep=$i;
        $l+=$cw[$c];
        if($l>$wmax)
        {
            if($sep==-1)
            {
                if($i==$j)
                    $i++;
            }
            else
                $i=$sep+1;
            $sep=-1;
            $j=$i;
            $l=0;
            $nl++;
        }
        else
            $i++;
    }
    return $nl;
}
}
?>
espero puedan ayudarme gracias
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder