Lines Matching refs:img
71 list($img, $params) = explode('?', $match, 2);
72 $img = trim($img);
75 $data['image'] = resolve_id(getNS($ID), $img);
108 $img = '<a href="'.ml($data['image'], array('id'=> $ID), false).'"><img src="'.
123 <div class="surface">'.$img.'</div>
144 $img = null;
146 $img = @imagecreatefromjpeg($d['file']);
148 $img = @imagecreatefrompng($d['file']);
150 $img = @imagecreatefromgif($d['file']);
152 if(!$img) $this->gfx_error('generic');
154 …$crop = $this->image_crop($img, $d['width'], $d['height'], $d['tlx'], $d['tly'], $d['brx'], $d['br…
155 imagedestroy($img);