Files
simak/app/print/kop_dok.php
2025-10-10 09:25:05 +07:00

25 lines
812 B
PHP

<?php
$pdf->SetY(8);
$image="logo_warna.jpg";
$pdf-> Image($image,20,11,16,22);
$pdf->SetFont('Arial','',12);
$pdf->Cell(200,5,'PEMERINTAH PROVINSI JAWA TIMUR',0,0,'C');
$pdf->Ln();
$pdf->SetFont('Arial','',12);
$pdf->Cell(200,5,'DINAS KESEHATAN',0,0,'C');
$pdf->Ln();
$pdf->SetFont('Arial','B',14);
$pdf->Cell(200,5,'RUMAH SAKIT UMUM DAERAH Dr. SAIFUL ANWAR',0,0,'C');
$pdf->Ln();
$pdf->SetFont('Arial','',9);
$pdf->Cell(200,4,'Jalan Jaksa Agung Suprapto Nomor 2, Klojen, Malang, Jawa Timur 65111',0,0,'C');
$pdf->Ln();
$pdf->Cell(200,4,'Telepon (0341) 362101, Pos-el staf-rsu-drsaifulanwar@jatimprov.go.id',0,0,'C');
$pdf->Ln();
$pdf->Cell(200,4,'Laman rsusaifulanwar.jatimprov.go.id',0,0,'C');
$pdf->SetDrawColor(200,200,200);
$pdf->Line(0, 40, 260, 40);
$pdf->SetDrawColor(0,0,0);
$pdf->Ln();
$pdf->Ln(2);
?>