Ver Mensaje Individual
  #3 (permalink)  
Antiguo 07/06/2005, 08:01
dancresi
 
Fecha de Ingreso: marzo-2005
Mensajes: 372
Antigüedad: 19 años, 1 mes
Puntos: 1
<?
include("conex_sie.php");
$link=Conectarse();
$sql="select * from nota_sie where titulo='$var'";
$res=mysql_query($sql,$link);
$row=mysql_fetch_array($res);
$dir=$row[direccion];
$depto=$row[departamento];
$titular=$row[titular];
$area_solic=$row[area_solic];
$cuerpo=$row[cuerpo];
$pdf = pdf_new();
pdf_open_file($pdf);
pdf_begin_page($pdf, 595, 842);
$font = pdf_findfont($pdf, "Times New Roman", "winansi", 1);
if ($font) {
pdf_setfont($pdf, $font, 10);
}
pdf_set_value($pdf, "textrendering", 0);
pdf_show_xy($pdf, "SECRETARÍA DE EDUCACIÓN", 160, 790);
pdf_show_xy($pdf, "INSTITUTO DE LA EDUCACION BASICA EN EL ESTADO DE MORELOS", 160, 780);
pdf_show_xy($pdf, "$dir", 160, 770);
pdf_show_xy($pdf, "$depto", 160, 760);
pdf_show_xy($pdf, "$titular", 110, 620);
pdf_show_xy($pdf, "$area_solic", 110, 610);
pdf_show_xy($pdf, "P R E S E N T E", 110, 600);
$imagen=pdf_open_jpeg($pdf,"./imagenes/tierra.jpg");
$x1=pdf_get_value($pdf, "imagewidth", $imagen);
$y1=pdf_get_value($pdf, "imageheight", $imagen);
pdf_place_image($pdf, $imagen, 60, 680, 0.50);
pdf_close_image($pdf,$imagen);
$imagen2=pdf_open_jpeg($pdf,"./imagenes/linea.jpg");
$x1=pdf_get_value($pdf, "imagewidth", $imagen2);
$y1=pdf_get_value($pdf, "imageheight", $imagen2);
pdf_place_image($pdf, $imagen2, 50, 5, 0.80);
pdf_close_image($pdf,$imagen2);
$imagen1=pdf_open_jpeg($pdf,"./imagenes/morelos.jpg");
$x1=pdf_get_value($pdf, "imagewidth", $imagen1);
$y1=pdf_get_value($pdf, "imageheight", $imagen1);
pdf_place_image($pdf, $imagen1, 60, 55, 0.55);
pdf_close_image($pdf,$imagen1);
pdf_show_boxed($pdf,$cuerpo,110,400,430,150,"justi fy");
pdf_end_page($pdf);
pdf_close($pdf);
$data = pdf_get_buffer($pdf);
header("Content-type: application/pdf");
header("Content-disposition: inline; filename=test.pdf");
header("Content-length: " . strlen($data)); // desplegar los datos del buffer como PDF
echo $data;
?>