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

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

$pdf->SetDrawColor(220, 20, 60);
$pdf->Cell(80, 15, '東京', 1, 1);
$pdf->SetDrawColor(0, 191, 255);
$pdf->Cell(80, 15, '大阪', 1, 1);
$pdf->SetDrawColor(128);
$pdf->Cell(80, 15, '名古屋', 1, 1);

$pdf->Output();
?>