Lines Matching refs:img
62 [$img, $params] = explode('?', $match, 2);
63 $img = trim($img);
66 $data['image'] = resolve_id(getNS($ID), $img);
98 $img = '<a href="' . ml($data['image'], ['id' => $ID], false) . '"><img src="' .
113 <div class="surface">' . $img . '</div>
135 $img = null;
137 $img = @imagecreatefromjpeg($d['file']);
139 $img = @imagecreatefrompng($d['file']);
141 $img = @imagecreatefromgif($d['file']);
143 if ($img === null) $this->gfxError('generic');
145 …$crop = $this->imageCrop($img, $d['width'], $d['height'], $d['tlx'], $d['tly'], $d['brx'], $d['bry…
146 imagedestroy($img);