在WAP站点用GD(1.8版以上)生成WBMP |
| 作者:未知 来源:转载 发布时间:2005-7-27 9:43:00 |
|
<?xml version="1.0"?> <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"> <wml> <card id="start" title="Rectangle"> <p align="center"> <img src="rectangle.php" alt="Rectangle"/> </p> </card> </wml> rectangle.php <? Header("Content-type: image/vnd.wap.wbmp"); $im = imagecreate(90, 90); $white = ImageColorAllocate($im, 255,255,255); $black = ImageColorAllocate($im, 0,0,0); ImageRectangle($im, 5, 5, 85, 85, $black); ImageWBMP($im); ImageDestroy($im); ?> |
| [] [返回上一页] [打 印] |
|
文章评论 |
