Mira algo asi:
Código PHP:
//pagina iframe.php
$html = '<iframe>
<img src="verFoto.php" alt="Imagen"/>
</iframe>';
print $html;
Código PHP:
//pagina verFoto.php
include("conexion.php");
$sql = "SELECT CVFOTO FROM cargo
WHERE CVIDCARGO = 23";
$res = mysql_query($sql, $conexion);
$items = mysql_fetch_assoc($res);
$imagen = $items["CVFOTO"];
$mime = 'image';
header("Content-Type: $mime");
echo $imagen;
Y para ver todo debes ir a iframe.php.
Saludos!