Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のように、PHP スクリプトへの呼び出しから直接画像を出力する場合は、正しいヘッダー<img src="yourscript.php" />を送信する必要があります。Content-Type
<img src="yourscript.php" />
Content-Type
header('Content-Length: '.filesize($yourimage)); header('Content-Type: image/png');
出力が開始される前に、 header()への呼び出しが発生する必要があることに注意してください。