<?php
require('fpdf/mbfpdf.php');

$pdf=new MBFPDF('P', 'mm', 'A4');
$pdf->AddMBFont(GOTHIC ,'SJIS');
$pdf->AddPage();
$pdf->SetFont(GOTHIC,'',20);

$pdf->SetLineWidth(0.2);
$pdf->Cell(80, 15, '東京', 1, 1);
$pdf->SetLineWidth(1.5);
$pdf->Cell(80, 15, '大阪', 1, 1);
$pdf->SetDrawColor(255, 0, 0);
$pdf->SetLineWidth(0.5);
$pdf->Cell(80, 15, '名古屋', 1, 1);

$pdf->Output();
?>