<?php
// データベースに接続する
$dbconn = pg_connect('dbname=foo');
// bytea データを取得する
$res = pg_query("SELECT data FROM gallery WHERE name='Pine trees'");
$raw = pg_fetch_result($res, 'data');
// バイナリに変換し、ブラウザに送信する
header('Content-type: image/jpeg');
echo pg_unescape_bytea($raw);
?>