Home
last modified time | relevance | path

Searched refs:image (Results 1 – 25 of 31) sorted by relevance

12

/dokuwiki/vendor/splitbrain/slika/src/
H A DGdAdapter.php11 /** @var resource libGD image */
12 protected $image; variable in splitbrain\\slika\\GdAdapter
13 /** @var int width of the current image */
15 /** @var int height of the current image */
25 $this->image = $this->loadImage($imagepath);
33 if (is_resource($this->image)) {
34 imagedestroy($this->image);
89 $transparency = imagecolorallocatealpha($this->image, 0, 0, 0, 127);
93 $image = imagerotate($this->image, 18
[all...]
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DHTMLCreator.php44 /** @var string image alignments in output */
82 if ($this->image != null) {
83 $imageStr = "<a href='".$this->image->link."'".$targetInsert.">".
84 "<img src='".$this->image->url."' border='0' alt='".
85 FeedCreator::iTrunc(htmlspecialchars($this->image->title), 100).
87 if ($this->image->width) {
88 $imageStr .= " width='".$this->image->width."' ";
90 if ($this->image->height) {
91 $imageStr .= " height='".$this->image->height."' ";
H A DRSSCreator091.php69 if ($this->image != null) {
70 $feed .= " <image>\n";
71 $feed .= " <url>".$this->image->url."</url>\n";
72 $feed .= " <title>".FeedCreator::iTrunc(htmlspecialchars($this->image->title), 100)."</title>\n";
73 $feed .= " <link>".$this->image->link."</link>\n";
74 if ($this->image->width != "") {
75 $feed .= " <width>".$this->image->width."</width>\n";
77 if ($this->image->height != "") {
78 $feed .= " <height>".$this->image->height."</height>\n";
80 if ($this->image
[all...]
H A DRSSCreator10.php37 if ($this->image != null) {
38 $feed .= " <image rdf:resource=\"".$this->image->url."\" />\n";
50 if ($this->image != null) {
51 $feed .= " <image rdf:about=\"".$this->image->url."\">\n";
52 $feed .= " <title>".$this->image->title."</title>\n";
53 $feed .= " <link>".$this->image->link."</link>\n";
54 $feed .= " <url>".$this->image->url."</url>\n";
55 $feed .= " </image>\
[all...]
H A DFeedCreator.php22 public $syndicationURL, $image, $language, $copyright, $pubDate, $lastBuildDate, $editor, $editorEmail, $webmaster, $category, $docs, $ttl, $rating, $skipHours, $skipDays;
/dokuwiki/conf/
H A Dmime.conf6 jpg image/jpeg
7 jpeg image/jpeg
8 gif image/gif
9 png image/png
10 webp image/webp
11 ico image/vnd.microsoft.icon
52 odi !application/vnd.oasis.opendocument.image
57 svg image/svg+xml
/dokuwiki/inc/
H A Dmedia.php58 * Handles the saving of image meta data
143 * Display the form to edit image meta data
661 if (str_starts_with($mime, 'image/')) {
663 if ($mime == 'image/gif' && $info[2] != 1) {
665 } elseif ($mime == 'image/jpeg' && $info[2] != 2) {
667 } elseif ($mime == 'image/png' && $info[2] != 3) {
800 * @param string $image filename of the current image
803 function media_tabs_details($image, $selected_tab = '')
813 [, $mime] = mimetype($image);
765 media_tabs_details($image, $selected_tab = '') global() argument
954 media_tab_view($image, $ns, $auth = null, $rev = '') global() argument
978 media_tab_edit($image, $ns, $auth = null) global() argument
996 media_tab_history($image, $ns, $auth = null) global() argument
1025 media_preview($image, $auth, $rev = '', $meta = false) global() argument
1062 media_preview_buttons($image, $auth, $rev = '') global() argument
1128 media_image_preview_size($image, $rev, $meta = false, $size = 500) global() argument
1203 media_details($image, $auth, $rev = '', $meta = false) global() argument
1246 media_diff($image, $ns, $auth, $fromajax = false) global() argument
1274 media_file_diff($image, $l_rev, $r_rev, $ns, $auth, $fromajax) global() argument
1292 media_image_diff($image, $l_rev, $r_rev, $l_size, $r_size, $type) global() argument
1306 media_restore($image, $rev, $auth) global() argument
[all...]
H A DAjax.php230 * (image details) for the Mediamanager
240 $image = '';
241 if ($INPUT->has('image')) $image = cleanID($INPUT->str('image'));
242 if (isset($IMG)) $image = $IMG;
243 if (isset($JUMPTO)) $image = $JUMPTO;
248 tpl_mediaFileDetails($image, $rev);
252 * Returns image diff representation for mediamanager
260 $image
[all...]
H A Dtemplate.php1063 * Returns the requested EXIF/IPTC tag from the current image
1076 * @param null|string $src the image src, uses global $SRC if not given
1109 * Prints a html description list of the metatags of the current image
1168 * Prints the image with a link to the full sized version
1173 * @param int $maxwidth - maximal width of the image
1174 * @param int $maxheight - maximal height of the image
1176 * @param array $params - additional image attributes
1263 $p['width'] = 2; //no more 1x1 px image because we live in times of ad blockers...
1507 * @param string $image
1512 function tpl_mediaFileDetails($image,
1436 tpl_mediaFileDetails($image, $rev) global() argument
[all...]
/dokuwiki/vendor/splitbrain/slika/
H A DREADME.md1 # Slika - simple image handling for PHP
49 All resize operations will keep the original aspect ratio of the image. There will be no distortion.
54 # fit the image into a bounding box of 500x500 pixels
57 # adjust the image to a maximum width of 500 pixels
60 # adjust the image to a maximum height of 500 pixels
66 Similar to resizing, but this time the image will be cropped to fit the new aspect ratio.
74 Rotates the image. The parameter passed is one of the EXIF orientation flags:
91 Rotates the image according to the EXIF rotation tag if found.
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedItem.php19 public $author, $authorEmail, $authorURL, $image, $category, $categoryScheme, $comments, $guid, $source, $creator, $contributor, $lat, $long, $thumb;
37 * <enclosure length="17691" url="http://something.com/picture.jpg" type="image/jpeg" />
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_toc.css83 list-style-image: url(../../images/bullet.png);
86 list-style-image: url(../../images/open.png);
89 list-style-image: url(../../images/closed.png);
92 list-style-image: url(../../images/closed-rtl.png);
H A D_modal.css50 background-image: url(../../images/up.png);
53 background-image: url(../../images/page.png);
56 background-image: url(../../images/ns.png);
H A D_links.css43 background-image: url(../../images/external-link.svg);
47 background-image: url(../../images/unc.svg);
51 background-image: url(../../images/email.svg);
H A D_imgdetail.css2 * This file provides styles for the image detail page (detail.php).
H A Dbasic.less404 input[type=image] {
420 background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgo8bGluZWFyR3JhZGllbnQgaWQ9Imc4MjQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGRkZGRkYiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNGNEY0RjQiIG9mZnNldD0iMC4zIi8+PHN0b3Agc3RvcC1jb2xvcj0iI0VFRUVFRSIgb2Zmc2V0PSIwLjk5Ii8+PHN0b3Agc3RvcC1jb2xvcj0iI0NDQ0NDQyIgb2Zmc2V0PSIuOTkiLz4KPC9saW5lYXJHcmFkaWVudD4KPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNnODI0KSIgLz4KPC9zdmc+);
421 background-image: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 30%, #eeeeee 99%, #cccccc 99%);
449 background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgo8bGluZWFyR3JhZGllbnQgaWQ9Imc2NzAiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGRkZGRkYiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNGNEY0RjQiIG9mZnNldD0iMC4zIi8+PHN0b3Agc3RvcC1jb2xvcj0iI0RERERERCIgb2Zmc2V0PSIwLjk5Ii8+PHN0b3Agc3RvcC1jb2xvcj0iI0JCQkJCQiIgb2Zmc2V0PSIuOTkiLz4KPC9saW5lYXJHcmFkaWVudD4KPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNnNjcwKSIgLz4KPC9zdmc+);
450 background-image: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 30%, #dddddd 99%, #bbbbbb 99%);
/dokuwiki/lib/styles/
H A Dscreen.css34 background-image: url(../images/error.png);
40 background-image: url(../images/info.png);
46 background-image: url(../images/success.png);
52 background-image: url(../images/notify.png);
H A Dall.css40 /* image alignment */
H A Dfeed.css13 category, image { selector
/dokuwiki/vendor/openpsa/universalfeedcreator/
H A DREADME.md26 $image = new FeedImage();
27 $image->title = "dailyphp.net logo";
28 $image->url = "http://www.dailyphp.net/images/logo.gif";
29 $image->link = "http://www.dailyphp.net";
30 $image->description = "Feed provided by dailyphp.net. Click to visit.";
33 $image->descriptionTruncSize = 500;
34 $image->descriptionHtmlSyndicated = true;
36 $rss->image = $image;
/dokuwiki/
H A Dfeed.php68 $image = new FeedImage(); global() variable
/dokuwiki/vendor/simplepie/simplepie/src/Content/Type/
H A DSniffer.php111 } elseif (substr($official, 0, 6) === 'image/') {
112 if ($return = $this->image()) {
164 return 'image/gif';
166 return 'image/png';
168 return 'image/jpeg';
170 return 'image/bmp';
172 return 'image/vnd.microsoft.icon';
183 public function image() function in SimplePie\\Content\\Type\\Sniffer
187 return 'image/gif';
189 return 'image/pn
[all...]
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt97 You can also use an image to link to another internal or external page by combining the syntax for links and [[#images_and_other_files|images]] (see below) like this:
103 Please note: The image formatting is the only formatting syntax accepted in link names.
105 The whole [[#images_and_other_files|image]] and [[#links|link]] syntax is supported (including image resizing, internal and external images and URLs and interwiki links).
137 Resize to given width and height((when the aspect ratio of the given width and height doesn't match that of the image, it will be cropped to the new ratio before resizing)): {{wiki:dokuwiki-128.png?200x50}}
139 Resized external image:           {{https://www.php.net/images/php.gif?200x50}}
144 Resized external image:           {{https://www.php.net/images/php.gif?200x50}}
165 For linking an image to another page see [[#Image Links]] above.
182 {{wiki:dokuwiki-128.png?linkonly}} This is just a link to the image.
194 Additionally DokuWiki supports a "poster" image whic
[all...]
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/
H A Dsmoothness.css126 list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
306 background-image: none;
393 background-image: none;
528 background-image: none;
665 background: url("data:image/gif;base64,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");
671 background-image: none;
1051 background-image: none;
1067 background-image: url("images/ui-icons_222222_256x240.png");
1070 background-image
[all...]
/dokuwiki/lib/plugins/acl/
H A Dstyle.css28 list-style-image: none;

12