ユーザーのツイートと画像を表示するアプリを開発しています。しかし、表示されている画像は非常に小さいです。プロファイルに通常表示される画像(通常は128 * 128)が必要です。これが私の関連するコードです:
foreach($ret1->results as $x)
{
echo "<div class='ttl'><div class='ttlpadding'><div class='item'><a href=\"","http://www.twitter.com/".$x->from_user,"\" target=\"_blank\"><img src=\"",$x->profile_image_url,"\" title=\"", $x->from_user." (".$x->from_user_name.")", "\" /></a>\n";
$text = preg_replace('/\s+#(\w+)/',' <a href="http://search.twitter.com/search?q=%23$1">#$1</a>', $x->text);
echo "<div class='clr'></div>";
echo "<div class='tweet'>".$text."</div></div></div></div><div class='clrflt'></div>";
}