通过文字传递创建的图形按钮
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-24
size change expected? $ima = imagecreatefromgif("$button.gif");// open input gif $im = imagecreate($buttonwidth,$buttonheigth); // create img in desired size $uglybg = ImageColorAllocate($im,0xf4,0xb2,0xe5); ImageRectangle($im,0,0,$buttonwidth,$buttonheigth,$uglybg); $dummy = imagecopyresized($im,$ima,0,0,0,0,$buttonwidth,$buttonheigth,$im_info[0],$im_info[1]); if ($dummy == "") { ImageDestroy($im); // if it didn''t work, create default below instead } else {;} ImageDestroy($ima); ImageColorTransparent($im,$uglybg); } else { $im = imagecreatefromgif("$button.gif");// open input gif } if ($im == "") { $im = imagecreate($buttonwidth,$buttonheigth); // if input gif not found, $rblue = ImageColorAllocate($im, 0x2c,0x6D,0xAF);// create a default box ImageRectangle($im,0,0,200,100,$rblue); } $color = ImageColorAllocate($im, $textcolor_array[0], $textcolor_array[1], $textcolor_array[2]); // allocate the color imagestring($im, $font, $x, $y, "$text", $color); // put the text on it ImageGif($im);// send button to browser ImageDestroy($im);// free the used memory ?> |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 一个SQL管理员的web接口下一篇: 屏蔽浏览器缓存****方法
关于通过文字传递创建的图形按钮的所有评论