|
użytkowników online: 81
|
OPINIE UŻYTKOWNIKÓW
|
Z mojej strony serwisowi należy się bardzo mocna pochwała. Nawet późna pora zgłoszenia problemu (23.00) nie przeszkodziła Darkowi w jego rozwiązaniu. Do tego poziom odpisywania na maile jest bardzo wysoki... wszystko wykłada jak cierpliwy nauczyciel. Śmiało mogę przyznać, że zamieszczone na stronach porady są rzeczowo opisane - a nie jak to bywa w innych serwisach mamy sam kod i nic poza tym! Jeszcze raz wielkie dzięki!
Damian Jarosz
Adminer.pl
|
|
PODRĘCZNIK PHP 5.x, 4.x, 3.x - częściowo spolszczony / źródło: www.php.net
[Spis]
[A]
[B]
[C]
[D]
[E]
[F]
[G]
[H]
[I]
[J]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[X]
[W]
[Z]
imagealphablending (PHP 4 >= 4.0.6, PHP 5) imagealphablending -- Set the blending mode for an image Descriptionbool imagealphablending ( resource image, bool blendmode )
imagealphablending() allows for two different
modes of drawing on truecolor images. In blending mode, the
alpha channel component of the color supplied to all drawing function,
such as imagesetpixel() determines how much of the
underlying color should be allowed to shine through. As a result, gd
automatically blends the existing color at that point with the drawing color,
and stores the result in the image. The resulting pixel is opaque. In
non-blending mode, the drawing color is copied literally with its alpha channel
information, replacing the destination pixel. Blending mode is not available
when drawing on palette images.
If blendmode is TRUE, then blending mode is enabled, otherwise
disabled.
Zwraca TRUE w przypadku sukcesu, FALSE w
przypadku porażki.
Notatka: Fa funkcja wymaga GD 2.0.1 lub nowszego.
User Contributed Notesashita at profund dot hu
05-Oct-2005 11:41
For "webmaster at nweurosport dot com" :
Currently IE does not support 24 (+8 alpha) bit PNG-s (nor any kind of transparent images). Mozilla and Opera handle them correctly.
Jakub Argasi
|