A partir de tradutores profissionais, empresas, páginas da web e repositórios de traduções disponíveis gratuitamente
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
Última atualização: 2011-10-23
Frequência de uso: 1
Qualidade:
filter effect: blend
prohnutífilter effect: blend
Última atualização: 2011-10-23
Frequência de uso: 1
Qualidade:
filter effect: circle out
svislé linkyfilter effect: circle out
Última atualização: 2011-10-23
Frequência de uso: 1
Qualidade:
level to use for the effect
nastavte zde dosah rozmazání v pixelech. level to use for the effect
Última atualização: 2011-10-23
Frequência de uso: 1
Qualidade:
filter effect: horizontal lines
rozpínánífilter effect: horizontal lines
Última atualização: 2011-10-23
Frequência de uso: 1
Qualidade:
끝내려면 누르십시오... filter effect: bend
stiskem 'esc' ukončete... filter effect: bend
Última atualização: 2011-10-23
Frequência de uso: 1
Qualidade:
first color for border effect
nastavte zde šířku okraje v pixelech. first color for border effect
Última atualização: 2011-10-23
Frequência de uso: 1
Qualidade:
filter effect: multi- circle out
kruhová výsečfilter effect: multi- circle out
Última atualização: 2011-10-23
Frequência de uso: 1
Qualidade:
"tm_isdst" - is daylight savings time in effect
nahoru
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
Aviso: contém formatação HTML invisível
참고: persistent connections have no effect if php is used as a cgi program.
poznámka:
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
col is the color index. using the negative of a color index has the effect of turning off antialiasing.
příklad 1. imagettftext() example
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
참고: 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.
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
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.
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade:
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.
Última atualização: 2011-10-24
Frequência de uso: 1
Qualidade: