Input/Output Learning Mode

Assuming that image.jpg exists and is readable by PHP, how will the following script be displayed if called directly from a browser?

<?php
 header ("Content-type: image/jpeg");
?>
<?php
 readfile ("image.jpg");
?>