Img.php
1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?PHP
/**
* Modifier that creates an HTML image tag from a variable
*
* It automatically retrieves the width and height of the image.
*
* $Id: Img.php,v 1.2 2004/04/11 08:47:45 schst Exp $
*
* @package patTemplate
* @subpackage Modifiers
* @author Stephan Schmidt <schst@php.net>
*/
/**
* Modifier that creates an HTML image tag from a variable
*
* It automatically retrieves the width and height of the image.
*
* $Id: Img.php,v 1.2 2004/04/11 08:47:45 schst Exp $
*
* @package patTemplate
* @subpackage Modifiers
* @author Stephan Schmidt <schst@php.net>
*/
class patTemplate_Modifier_HTML_Img extends patTemplate_Modifier
{
/**
* modify the value
*
* @access public
* @param string value
* @return string modified value
*/
function modify( $value, $params = array() )
{
$size = getimagesize( $value );
$params['src'] = $value;
$params['width'] = $size[0];
$params['height'] = $size[1];
return '<img'.$this->arrayToAttributes($params).' />';
}
/**
* create an attribute list
*
* @access private
* @param array
* @return string
*/
function arrayToAttributes( $array )
{
$string = '';
foreach( $array as $key => $val )
{
$string .= ' '.$key.'="'.htmlspecialchars( $val ).'"';
}
return $string;
}
}
?>