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

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

$x = $pdf->getX();
$y = $pdf->getY();
$pdf->Image('scape.png', $x, $y, 100.0, 0, 'PNG', 'http://www.google.co.jp/');

$pdf->Output();
?>