PHP头条
热点:

在WAP站点用GD1.8版以上生成WBMP






Rectangle


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);
?>

www.phpzy.comtrue/phprm/38869.htmlTechArticle在WAP站点用GD1.8版以上生成WBMP 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, 8...

相关文章

    暂无相关文章

PHP之友评论

今天推荐