欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

在WAP站点用GD1.8版以上生成WBMP_PHP教程

程序员文章站 2024-01-12 08:52:40
...




在WAP站点用GD1.8版以上生成WBMP_PHP教程


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.bkjia.comtruehttp://www.bkjia.com/PHPjc/532110.htmlTechArticlerectangle.php Header("Content-type: image/vnd.wap.wbmp"); $im = imagecreate(90, 90); $white = ImageColorAllocate($im, 255,255,255); $black = ImageColorAllocate($im, 0,0,0); ImageRe...