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

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

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

$pdf->Output();
?>