function.html_image.php
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:5k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7. /**
  8.  * Smarty {html_image} function plugin
  9.  *
  10.  * Type:     function<br>
  11.  * Name:     html_image<br>
  12.  * Date:     Feb 24, 2003<br>
  13.  * Purpose:  format HTML tags for the image<br>
  14.  * Input:<br>
  15.  *         - file = file (and path) of image (required)
  16.  *         - border = border width (optional, default 0)
  17.  *         - height = image height (optional, default actual height)
  18.  *         - image =image width (optional, default actual width)
  19.  *         - basedir = base directory for absolute paths, default
  20.  *                     is environment variable DOCUMENT_ROOT
  21.  *
  22.  * Examples: {html_image file="images/masthead.gif"}
  23.  * Output:   <img src="images/masthead.gif" border=0 width=400 height=23>
  24.  * @link http://smarty.php.net/manual/en/language.function.html.image.php {html_image}
  25.  *      (Smarty online manual)
  26.  * @author   Monte Ohrt <monte@ispi.net>
  27.  * @author credits to Duda <duda@big.hu> - wrote first image function
  28.  *           in repository, helped with lots of functionality
  29.  * @version  1.0
  30.  * @param array
  31.  * @param Smarty
  32.  * @return string
  33.  * @uses smarty_function_escape_special_chars()
  34.  */
  35. function smarty_function_html_image($params, &$smarty)
  36. {
  37.     require_once $smarty->_get_plugin_filepath('shared','escape_special_chars');
  38.     
  39.     $alt = '';
  40.     $file = '';
  41.     $border = 0;
  42.     $height = '';
  43.     $width = '';
  44.     $extra = '';
  45.     $prefix = '';
  46.     $suffix = '';
  47.     $server_vars = ($smarty->request_use_auto_globals) ? $_SERVER : $GLOBALS['HTTP_SERVER_VARS'];
  48.     $basedir = isset($server_vars['DOCUMENT_ROOT']) ? $server_vars['DOCUMENT_ROOT'] : '';
  49.     foreach($params as $_key => $_val) {
  50.         switch($_key) {
  51.             case 'file':
  52.             case 'border':
  53.             case 'height':
  54.             case 'width':
  55.             case 'dpi':
  56.             case 'basedir':
  57.                 $$_key = $_val;
  58.                 break;
  59.             case 'alt':
  60.                 if(!is_array($_val)) {
  61.                     $$_key = smarty_function_escape_special_chars($_val);
  62.                 } else {
  63.                     $smarty->trigger_error("html_image: extra attribute '$_key' cannot be an array", E_USER_NOTICE);
  64.                 }
  65.                 break;
  66.             case 'link':
  67.             case 'href':
  68.                 $prefix = '<a href="' . $_val . '">';
  69.                 $suffix = '</a>';
  70.                 break;
  71.             default:
  72.                 if(!is_array($_val)) {
  73.                     $extra .= ' '.$_key.'="'.smarty_function_escape_special_chars($_val).'"';
  74.                 } else {
  75.                     $smarty->trigger_error("html_image: extra attribute '$_key' cannot be an array", E_USER_NOTICE);
  76.                 }
  77.                 break;
  78.         }
  79.     }
  80.     if (empty($file)) {
  81.         $smarty->trigger_error("html_image: missing 'file' parameter", E_USER_NOTICE);
  82.         return;
  83.     }
  84.     if (substr($file,0,1) == '/') {
  85.         $_image_path = $basedir . $file;
  86.     } else {
  87.         $_image_path = $file;
  88.     }
  89.     if(!isset($params['width']) || !isset($params['height'])) {
  90.         if ($smarty->security &&
  91.             ($_params = array('resource_type' => 'file', 'resource_name' => $_image_path)) &&
  92.             (require_once(SMARTY_CORE_DIR . 'core.is_secure.php')) &&
  93.             (!smarty_core_is_secure($_params, $smarty)) ) {
  94.             $smarty->trigger_error("html_image: (secure) '$_image_path' not in secure directory", E_USER_NOTICE);
  95.         } elseif (!$_image_data = @getimagesize($_image_path)) {
  96.             if(!file_exists($_image_path)) {
  97.                 $smarty->trigger_error("html_image: unable to find '$_image_path'", E_USER_NOTICE);
  98.                 return;
  99.             } else if(!is_readable($_image_path)) {
  100.                 $smarty->trigger_error("html_image: unable to read '$_image_path'", E_USER_NOTICE);
  101.                 return;
  102.             } else {
  103.                 $smarty->trigger_error("html_image: '$_image_path' is not a valid image file", E_USER_NOTICE);
  104.                 return;
  105.             }
  106.         }
  107.         if(!isset($params['width'])) {
  108.             $width = $_image_data[0];
  109.         }
  110.         if(!isset($params['height'])) {
  111.             $height = $_image_data[1];
  112.         }
  113.     }
  114.     if(isset($params['dpi'])) {
  115.         if(strstr($server_vars['HTTP_USER_AGENT'], 'Mac')) {
  116.             $dpi_default = 72;
  117.         } else {
  118.             $dpi_default = 96;
  119.         }
  120.         $_resize = $dpi_default/$params['dpi'];
  121.         $width = round($width * $_resize);
  122.         $height = round($height * $_resize);
  123.     }
  124.     return $prefix . '<img src="'.$file.'" alt="'.$alt.'" border="'.$border.'" width="'.$width.'" height="'.$height.'"'.$extra.' />' . $suffix;
  125. }
  126. /* vim: set expandtab: */
  127. ?>