Home
last modified time | relevance | path

Searched refs:img (Results 26 – 28 of 28) sorted by path

12

/dokuwiki/lib/tpl/dokuwiki/css/
H A Dprint.css86 img { selector
90 img.media {
93 img.medialeft {
96 img.mediaright {
99 img.mediacenter {
152 #dokuwiki__header .logo img {
158 [dir=rtl] #dokuwiki__header .logo img {
/dokuwiki/lib/tpl/dokuwiki/images/
H A Dpagetools-build.php95 * @param resource $img The truetype GD image to work on
98 function imagecolorscale(&$img, $scale){
99 $w = imagesx($img);
100 $h = imagesy($img);
102 imagealphablending($img, false); argument
105 $rgba = imagecolorat($img, $x, $y);
115 $color = imagecolorallocatealpha($img, $r, $g, $b, $a);
116 imagesetpixel($img, $x, $y, $color);
119 imagealphablending($img, true);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php256 * |del|@cite, |form|@action, |img|@longdesc, |img|@src, |input|@src,
272 'img' => [
418 $images = $document->getElementsByTagName('img');
420 foreach ($images as $img) {
421 if ($img->hasAttribute('src')) {
422 $image_url = $this->cache_namefilter->filter($img->getAttribute('src'));
426 $img->setAttribute('src', $this->image_handler . $image_url);
428 $file = $this->registry->create(File::class, [$img->getAttribute('src'), $this->timeout, 5, ['X-FORWARDED-FOR' => $_SERVER['REMOTE_ADDR']], $this->useragent, $this->force_fsockopen]);
433 $img
[all...]

12