From professional translators, enterprises, web pages and freely available translation repositories.
level of the effect
vyberte zde efekt, který se má použít na obrázek. solarizace: napodobí přepálení barev. vivid: napodobuje barvy filmu velvia( tm). neon: obarví okraje na fotografii tak, aby se podobaly okrajům neonové lampy. najít okraje: detekuje na fotografii rozhraní a jejich intenzitu. level of the effect
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
filter effect: blend
prohnutífilter effect: blend
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
filter effect: circle out
svislé linkyfilter effect: circle out
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
level to use for the effect
nastavte zde dosah rozmazání v pixelech. level to use for the effect
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
filter effect: horizontal lines
rozpínánífilter effect: horizontal lines
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
끝내려면 누르십시오... filter effect: bend
stiskem 'esc' ukončete... filter effect: bend
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
first color for border effect
nastavte zde šířku okraje v pixelech. first color for border effect
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
filter effect: multi- circle out
kruhová výsečfilter effect: multi- circle out
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
"tm_isdst" - is daylight savings time in effect
nahoru
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting
참고: persistent connections have no effect if php is used as a cgi program.
poznámka:
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
col is the color index. using the negative of a color index has the effect of turning off antialiasing.
příklad 1. imagettftext() example
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
참고: flush() has no effect on the buffering scheme of your webserver or the browser on the client side.
některé servery, zvláště na win32, bufferují výstup až do ukončení běhu skriptu bez ohledu na flush(), a až potom odešlou výstup browseru.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
note that set_time_limit() has no effect when php is running in safe mode. there is no workaround other than turning off safe mode or changing the time limit in the configuration file.
obejít to lz jedine vypnutím bezpečného módu nebo změnou časového limitu v konfiguračním souboru.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
another good example of expression orientation is pre- and post-increment and decrement. users of php/fi 2 and many other languages may be familiar with the notation of variable++ and variable--. these are increment and decrement operators. in php/fi 2, the statement '$a++' has no value (is not an expression), and thus you can't assign it or use it in any way. php enhances the increment/decrement capabilities by making these expressions as well, like in c. in php, like in c, there are two types of increment - pre-increment and post-increment. both pre-increment and post-increment essentially increment the variable, and the effect on the variable is idential. the difference is with the value of the increment expression. pre-increment, which is written '++$variable', evaluates to the incremented value (php increments the variable before reading its value, thus the name 'pre-increment'). post-increment, which is written '$variable++' evaluates to the original value of $variable, before it was incremented (php increments the variable after reading its value, thus the name 'post-increment').
function double( $i) {return $i*2;} $b = $a = 5; / * přiřaď hodnotu pět do proměnných $a a $b * / $c = $a++; / * proveď post-inkrement, přiřaď původní hodnotu $a (5) do $c * / $e = $d = ++$b; / * proveď pre-inkrement, přiřaď inkrementovanou hodnotu $b (6) do $d a $e * / / * nyní jsou hodnoty proměnných $d a $e rovny 6 * / $f = double($d++); / * přiřaď dvakrát hodnotu $d emphasis před / emphasis inkrementací, 2*6 = 12, do $f * / $g = double(++$e); / * přiřaď dvakrát hodnotu $e emphasis po / emphasis inkrementaci, 2*7 = 14 do $g * / $h = $g += 10; / * nejdříve je $g inkrementováno o 10 má pak hodnotu 24.
Last Update: 2011-10-24
Usage Frequency: 1
Quality: