.php で終わってる動的生成される画像には、解決策は、&.png?
のような CGI パラメータを追加する
{{http://example.com/test.php?test1=test1&test2=test2&.png?}}
PHPで画像をbase64エンコードしてインラインイメージとしてimgタグで表示する方法
<php> $IP="192.168.0.10"; $img = base64_encode(file_get_contents("http://$IP/graph.php?host_id=1002&graph_id=1028")); echo '<img src="data:image/png;base64,' . "$img" . '">'; </php>