通过文字传递创建的图形按钮
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-24
通过文字传递创建的图形按钮,详细说明请看文内英文说明 <?php Header( "Content-type: image/gif"); // info for the browser /* PHP3 Button generator, (c) 2000 by IzzySoft (izzysoft@buntspecht.de) * License: GPL (and it would be nice to drop me a note that you find it * useful - if you use it. And, of course, I am very interested in * enhancements you made to the script! * * Purpose: generate buttons with text passed by parameter. * * possible parameters to the script: *button- input gif image. Just the part of the filename before the dot. *The specified image file is expected in the same directory *as this script resides in. *font - font to use (1 - 5; 1 is very small, 3 medium, 5 normal size. *The script will automatically use a smaller font if text is *too long for selected size.) Default: 5 *text - the text to be put on the button. Will be centered. *textcolor - color for the letters. Default: white. *in this example code only blue, white and black are defined; *but you can add custom colors easily. *width,heigth - width and heigth of the button. Useful only if target *button should have different size than source image. * * Example for usage: * <IMG SRC="button.php3?button=yellow&text=Example"> * will look for yellow.gif and put the string "Example" on it. * * I use to have three buttons I normally generate (one displays selected * item, one is for mouseover(), and one is the default button). The source * images are yellow.gif, white.gif and blue.gif - so my script assumes * blue.gif as default if "button=" not specified - you may wish to change * this below, it''s easy ;) */ // ===========================[ check fo // r parameters and/or set defaults ]=== if (($font == "") || ($font > 5) || ($font < 1)) { $font = 5; } if ($text == "") { $text="Moin!"; }// button text if ($textcolor == "") {// color for the letters switch ($button) { case "yellow": case &q |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 一个SQL管理员的web接口下一篇: 屏蔽浏览器缓存另类方法
关于通过文字传递创建的图形按钮的所有评论