Home
last modified time | relevance | path

Searched +full:red +full:- +full:x (Results 1 – 25 of 599) sorted by relevance

12345678910>>...24

/plugin/diagramsnet/lib/js/diagramly/vsdx/ !
DbmpDecoder.js59 var red = this.buffer[this.pos++];
62 red: red, property
93 for (var y = this.height - 1; y >= 0; y--) {
94 for (var x = 0; x < xlen; x++) {
96 var location = y * this.width * 4 + x*8*4;
98 if(x*8+i<this.width){
99 var rgb = this.palette[((b>>(7-i))&0x1)];
100 this.data[location+i*4] = rgb.red;
111 this.pos+=(4 - mode);
119 for (var y = this.height - 1; y >= 0; y--) {
[all …]
/plugin/combo/ComboStrap/ !
H A DColorHsl.php8 * @license GPL 3 (https://www.gnu.org/licenses/gpl-3.0.en.html)
34 $this->hue = $hue;
35 $this->saturation = $saturation;
36 $this->lightness = $lightness;
47 return $this->lightness;
52 return $this->saturation;
57 return $this->hue;
68 $this->lightness = $int;
83 $lightness = $this->lightness / 100;
84 $saturation = $this->saturation / 100;
[all …]
/plugin/reflect/ !
Daction.php6 * @author i-net software <tools@inetsoftware.de>
23 $controller->register_hook('MEDIA_SENDFILE', 'BEFORE', $this, 'reflect__reflect');
31 $data = $event->data;
32 …] ) ? $this->getConf('return_type') : (in_array( hsc($_REQUEST['return_type']), array('png', 'jpg'…
34 $data['height'] = $this->getConf('reflect_height');
35 if ( empty($_REQUEST['bgc']) ) $_REQUEST['bgc'] = $this->getConf('bgc');
43 ($mtime < time()-$cache) // 'recache' and cache has expired
45 if ( $this->create_reflect_image( $data, $cacheFile, $_REQUEST['bgc'] ) ) {
49 $event->data = $data;
58 $imagebgcolor = $this->calc_bgcolor($imagebgcolor);
[all …]
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ !
Dmodule.graphic.pcd.php17 if (!defined('GETID3_INCLUDEPATH')) { // prevent path-exposing attacks that access modules directly…
28 $info = &$this->getid3->info;
35 $this->fseek($info['avdataoffset'] + 72);
37 $PCDflags = $this->fread(1);
50 if ($this->ExtractData > 3) {
52 …$this->error('Cannot extract PSD image data for detail levels above BASE (level-3) because encrypt…
55 } elseif ($this->ExtractData > 0) {
60 …//$PCD_levels[4] = array(1536, 1024, ??); // BASE*4 - encrypted with Kodak-proprietary compres…
61 …//$PCD_levels[5] = array(3072, 2048, ??); // BASE*16 - encrypted with Kodak-proprietary compres…
62 …[6] = array(6144, 4096, ??); // BASE*64 - encrypted with Kodak-proprietary compression/encrypti…
[all …]
/plugin/photogallery/phpThumb/ !
Dphpthumb.filters.php8 // phpthumb.filters.php - image processing filter functions //
22 if (is_object($this->phpThumbObject)) {
23 return $this->phpThumbObject->DebugMessage($message, $file, $line);
31 …$this->DebugMessage('Skipping ApplyMask() because gd_version is "'.phpthumb_functions::gd_version(…
36 $this->DebugMessage('Using alpha ApplyMask() technique', __FILE__, __LINE__);
46 for ($x = 0, $xMax = imagesx($gdimg_image); $x < $xMax; $x++) {
48 //$RealPixel = phpthumb_functions::GetPixelColor($gdimg_mask_blendtemp, $x, $y);
49 $RealPixel = phpthumb_functions::GetPixelColor($gdimg_image, $x, $y);
50 …phpthumb_functions::GrayscalePixel(phpthumb_functions::GetPixelColor($gdimg_mask_resized, $x, $y));
51 $MaskAlpha = 127 - (floor($MaskPixel['red'] / 2) * (1 - ($RealPixel['alpha'] / 127)));
[all …]
Dphpthumb.functions.php8 // phpthumb.functions.php - general support functions //
96 return -1;
108 // The function first replaces _, - and + with a dot . in the version strings
109 $version1 = strtr($version1, '_-+', '...');
110 $version2 = strtr($version2, '_-+', '...');
114 $version1 = preg_replace('#([\d]+)([A-Z]+)([\d]+)#i', '$1.$2.$3', $version1);
115 $version2 = preg_replace('#([\d]+)([A-Z]+)([\d]+)#i', '$1.$2.$3', $version2);
184 4 => 'application/x-shockwave-flash', // IMAGETYPE_SWF
189 9 => 'application/octet-stream', // IMAGETYPE_JPC
191 11 => 'application/octet-stream', // IMAGETYPE_JPX
[all …]
/plugin/barcodes/lib/ !
DColor.php27 private $red; variable in DokuWiki\\Barcodes\\Color
33 if (preg_match('/^#?([0-9a-f]{6})/i', $color, $matches)) {
34 $this->red = hexdec(substr($matches[1], 0, 2));
35 $this->green = hexdec(substr($matches[1], 2, 2));
36 $this->blue = hexdec(substr($matches[1], 4, 2));
48 return (new Color($str))->getHex();
52 return sprintf("%02X%02X%02X", $this->red, $this->green, $this->blue);
56 return $this->getHex();
/plugin/svgimg2/ !
Dhelper.php6 * @author i-net software <tools@inetsoftware.de>
37 if ( empty($progType) ) $progType = $this->getConf('use_programm');
42 $width = empty( $width ) ? '' : ' -w' . intval($width);
43 $height = empty( $height ) ? '' : ' -h' . intval($height);
45 $cmd = sprintf("%s %s -z%s%s --export-%s=%s",
58 if ( !empty($width) && !empty($data['height']) ) $param .= 'x';
60 if ( !empty($param) ) $cmd = " -resize " . $param;
62 if ( !empty( $data['border'] )) { $cmd .= ' -border ' . intval($data['border']); }
63 …if ( !empty( $data['bordercolor'] )) { $cmd .= ' -bordercolor "' . escapeshellarg($data['bordercol…
64 $cmd .= " -strip -coalesce -quality " . intval($conf['jpg_quality']);
[all …]
/plugin/jmol2/jmol/ !
DJmolAppletSigned0_i18n_et.jar ... META-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN.RSA ...
DJmolApplet0_i18n_et.jar ... META-INF/ META-INF/MANIFEST.MF org/ org/jmol ...
DJmolAppletSigned0_i18n_pt.jar ... META-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN.RSA ...
DJmolApplet0_i18n_pt.jar ... META-INF/ META-INF/MANIFEST.MF org/ org/jmol ...
DJmolAppletSigned0_i18n_hu.jar ... META-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN.RSA ...
DJmolApplet0_i18n_hu.jar ... META-INF/ META-INF/MANIFEST.MF org/ org/jmol ...
DJmolAppletSigned0_i18n_en_GB.jar ... META-INF/MANIFEST.MF META-INF/SELFSIGN.SF META-INF/SELFSIGN.RSA ...
DJmolApplet0_i18n_en_GB.jar ... META-INF/ META-INF/MANIFEST.MF org/ org/jmol ...
/plugin/number/ !
Dsyntax.php8 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
34 $this->Lexer->addSpecialPattern('{{n>.*?}}', $mode, 'plugin_number');
41 $raw = substr($match, 4, -2);
43 $raw = preg_replace('/[^0-9a-z_]/', '', $raw);
54 } else if (preg_match('/^0x[0-9a-f]+$/i', $raw)) {
57 } else if (preg_match('/^[0-9a-z]+_[0-9]+$/i', $raw)) {
78 return '<code style="color: blue"><span style="color: red">0x</span>'
84 return '<code style="color: blue"><span style="color: red">0b</span>'
98 …$renderer->doc .= '<code style="color: red">⚠️ warning: ' . $data['raw'] . ' is not a valid input<…
102 …$renderer->doc .= '<code style="color: red">⚠️ warning: ' . $data['raw'] . ' is not a safe for con…
[all …]
/plugin/syntaxhighlighter/Scripts/ !
DshBrushCss.js9-attachment background-color background-image background-position '+'background-repeat background …
11 {return'\\b([a-z_]|)'+str.replace(/ /g,'(?=:)\\b|\\b([a-z_\\*]|\\*|)')+'(?=:)\\b';}
13 {return'\\b'+str.replace(/ /g,'(?!-)(?!:)\\b|\\b()')+'\:\\b';}
/plugin/syntaxhighlighter/Uncompressed/ !
DshBrushCss.js3 …var keywords = 'ascent azimuth background-attachment background-color background-image background-
4 …'background-repeat background baseline bbox border-collapse border-color border-spacing border-sty…
5 …'border-right border-bottom border-left border-top-color border-right-color border-bottom-color bo…
6 …'border-top-style border-right-style border-bottom-style border-left-style border-top-width border
7 …'border-bottom-width border-left-width border-width border cap-height caption-side centerline clea…
8 …'content counter-increment counter-reset cue-after cue-before cue cursor definition-src descent di…
9 …'elevation empty-cells float font-size-adjust font-family font-size font-stretch font-style font-v…
10 …'height letter-spacing line-height list-style-image list-style-position list-style-type list-style…
11 …'margin-right margin-bottom margin-left margin marker-offset marks mathline max-height max-width m…
12 …'outline-color outline-style outline-width outline overflow padding-top padding-right padding-bott…
[all …]
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/ !
DClientUtils.php14 * bundles found on Red Hat, CentOS, Fedora, Ubuntu, Debian, FreeBSD, OS X
27 // Red Hat, CentOS, Fedora (provided by the ca-certificates package)
28 '/etc/pki/tls/certs/ca-bundle.crt',
29 // Ubuntu, Debian (provided by the ca-certificates package)
30 '/etc/ssl/certs/ca-certificates.crt',
32 '/usr/local/share/certs/ca-root-nss.crt',
33 // OS X provided by homebrew (using the default path)
36 'C:\\windows\\system32\\curl-ca-bundle.crt',
37 'C:\\windows\\curl-ca-bundle.crt',
69 https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt. Once
/plugin/flowchartjs/styles/ !
Ddefault.json2 "x": 0, number
4 "line-width": 3,
5 "line-length": 50,
6 "text-margin": 10,
7 "font-size": 14,
8 "font-color": "black",
9 "line-color": "black",
10 "element-color": "black",
12 "yes-text": "yes",
13 "no-text": "no",
[all …]
/plugin/mdpage/vendor/cebe/markdown/tests/github-data/ !
Dgithub-sample.md4 *View the [source of this content](http://github.github.com/github-flavored-markdown/sample_content…
8 Roses are red
13 Roses are red
19 -------------------------
21 In addition to the changes in the previous section, certain references are auto-linked:
35 -------------------------------
37 In first grade I learned that 5 > 3 and 2 < 7. Maybe some arrows. 1 -> 2 -> 3. 9 <- 8 <- 7.
42 ------------------------
46 * Red Apples
66 ['a', 'b'].map { |x| x.uppercase }
[all …]
/plugin/sequencediagram/bower_components/raphael/dev/ !
Draphael.core.js12- container (HTMLElement|string) DOM element or its ID which is going to be a parent for drawing s…
13 - width (number)
14 - height (number)
15- callback (function) #optional callback function which is going to be executed in the context of …
17 - x (number)
18 - y (number)
19 - width (number)
20 - height (number)
21- callback (function) #optional callback function which is going to be executed in the context of …
23- all (array) (first 3 or 4 elements in the array are equal to [containerID, width, height] or [x,…
[all …]
/plugin/ebnf/ !
H A Debnf.php16 Vincent Tscherter, tscherter@tscherter.net, Solothurn, 2009-01-18
18 2009-01-18 version 0.1 first release
19 2009-01-02 version 0.2
20 - title und comment literal added
21 - ";" als terminator-symbol added
22 2023-09-28 version 0.3 prefixed all constants
23 2025-09-05 version 0.4 PHP 8 compatibility and other fixes
43 $ebnf_lexemes[] = array( 'type' => EBNF_IDENTIFIER_TOKEN, 'expr' => "[a-zA-Z0-9_-]+" );
78 header('Content-Type: application/xml');
79 echo $dom->saveXML();
[all …]
/plugin/dirtylittlehelper/ !
Dstyle.css6 background-color:#fff;
10 z-index:15;
13 font-size:11pt;
21 background-color: #eee;
22 font-size: 10pt;
23 text-align: right;
24 padding-right: 6px;
28 padding-right: 0px;
38 padding-left: 4px;
55 background-color: #EEE;
[all …]

12345678910>>...24