通过文字传递创建的图形按钮


Posted in PHP onOctober 09, 2006

通过文字传递创建的图形按钮,详细说明请看文内英文说明
<?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 "white":
    $textcolor = "black";
    break;
    default:
    if ($button == "") { $button = "blue"; }
    $textcolor = "white";
    break;
    }
    } // textcolor end
    $im_info = getimagesize("$button.gif"); // button size
    if ($width == "") {
    if ($im_info == "") {
    $buttonwidth = 125;
    } else {
    $buttonwidth = "$im_info[0]";
    }
    } else {
    $buttonwidth = $width;
    }
    if ($heigth == "") {
    if ($im_info == "") {
    $buttonheigth = 30;
    } else {
    $buttonheigth = "$im_info[1]";
    }
    } else {
    $buttonheigth = $heigth;
    }
    $vmidth = ceil($buttonheigth / 2);
    // =====================================
    //     ===[ now lets define some colors ]===

    $white = "255,255,255";
    $black = "0,0,0";
    $blue = "0x2c,0c6d,0xaf";
    // =====================================
    //     =============[ build color array ]===
    // now we put the needed color into an a
    //     rray (if e.g. "$textcolor=white",
    // the array $textcolor_array represents
    //     "white")
    $textcolor_array = explode(",", $$textcolor);
    // =======================[ calculate po
    //     sition of the text on the button ]===
    do {
    $textwidth = strlen($text) * imagefontwidth($font);
    $x = ($buttonwidth - $textwidth) / 2; $x = ceil($x);
    $y = $vmidth - (imagefontheight($font) / 2);
    $font--;
    } while (($x < 0) && ($font > 0)); $font++;
    // =====================================
    //     ======[ now we create the button ]===
    if (isset($width) || isset($heigth)) {// 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
    ?>         

PHP 相关文章推荐
php时间不正确的解决方法
Apr 09 PHP
php缓冲 output_buffering的使用详解
Jun 13 PHP
PHP 登录完成后如何跳转上一访问页面
Jan 14 PHP
php实现文件下载简单示例(代码实现文件下载)
Mar 10 PHP
php自定义函数截取汉字长度
May 15 PHP
PHP 双链表(SplDoublyLinkedList)简介和使用实例
May 12 PHP
Yii2框架制作RESTful风格的API快速入门教程
Nov 08 PHP
详解PHP处理密码的几种方式
Nov 30 PHP
PHP读取word文档的方法分析【基于COM组件】
Aug 01 PHP
php实现统计二进制中1的个数算法示例
Jan 23 PHP
thinkPHP5.1框架路由::get、post请求简单用法示例
May 06 PHP
PHP+redis实现微博的拉模型案例详解
Jul 10 PHP
计算2000年01月01日起到指定日的天数
Oct 09 #PHP
文件上传程序的全部源码
Oct 09 #PHP
一个简单计数器的源代码
Oct 09 #PHP
一个用mysql_odbc和php写的serach数据库程序
Oct 09 #PHP
PHP脚本数据库功能详解(下)
Oct 09 #PHP
PHP脚本数据库功能详解(中)
Oct 09 #PHP
PHP脚本数据库功能详解(上)
Oct 09 #PHP
You might like
php获取本地图片文件并生成xml文件输出具体思路
2013/04/27 PHP
从wamp到xampp的升级之路
2015/04/08 PHP
php获取一定范围内取N个不重复的随机数
2016/05/28 PHP
PHP 8新特性简介
2020/08/18 PHP
javascript生成/解析dom的CDATA类型的字段的代码
2007/04/22 Javascript
javascript获取浏览器类型和版本的方法(js获取浏览器版本)
2014/03/13 Javascript
一个JavaScript获取元素当前高度的实例
2014/10/29 Javascript
原生js实现addClass,removeClass,hasClass方法
2016/04/27 Javascript
JavaScript String 对象常用方法详解
2016/05/13 Javascript
微信小程序 css使用技巧总结
2017/01/09 Javascript
JavaScript选择排序算法原理与实现方法示例
2018/08/06 Javascript
React事件处理的机制及原理
2018/12/03 Javascript
解决node-sass偶尔安装失败的方法小结
2018/12/05 Javascript
Vue.js组件通信之自定义事件详解
2019/10/19 Javascript
keep-alive不能缓存多层级路由菜单问题解决
2020/03/10 Javascript
React中Ref 的使用方法详解
2020/04/28 Javascript
VueQuillEditor富文本上传图片(非base64)
2020/06/03 Javascript
[03:24]DOTA2超级联赛专访hao 大翻盘就是逆袭
2013/05/24 DOTA
[01:07:19]DOTA2-DPC中国联赛 正赛 CDEC vs XG BO3 第一场 1月19日
2021/03/11 DOTA
Python通过future处理并发问题
2017/10/17 Python
pandas数据预处理之dataframe的groupby操作方法
2018/04/13 Python
对python遍历文件夹中的所有jpg文件的实例详解
2018/12/08 Python
Python设计模式之桥接模式原理与用法实例分析
2019/01/10 Python
家长对小学生的评语
2014/01/28 职场文书
实习会计求职自荐信范文
2014/03/10 职场文书
大学生活自我评价
2014/04/09 职场文书
关于环保的建议书
2014/05/12 职场文书
医院我们的节日活动实施方案
2014/08/22 职场文书
反四风对照检查材料思想汇报
2014/09/16 职场文书
2015年元旦文艺晚会总结(学院)
2014/11/28 职场文书
入党介绍人考察意见
2015/06/01 职场文书
国庆节新闻稿
2015/07/17 职场文书
如何开发一个渐进式Web应用程序PWA
2021/05/10 Javascript
Python趣味挑战之实现简易版音乐播放器
2021/05/28 Python
Spring Boot 整合 Apache Dubbo的示例代码
2021/07/04 Java/Android
Python使用pandas导入xlsx格式的excel文件内容操作代码
2022/12/24 Python