|
użytkowników online: 15
|
OPINIE UŻYTKOWNIKÓW
|
Na początku, kiedy zobaczyłem, że ktoś chce jakiejś opłaty za pomoc w tworzeniu stron ryknąłem śmiechem - potem przyszły problemy... i zaryzykowałem. Druga rzecz to: nie chciałem "kopiować". Ale prawda jest taka: są lepsi, bardziej doświadczeni i... czasem trzeba poprosić o pomoc, a jak poświęca się na to trzecią cześć życia, to nic dziwnego, że nie chce się swoich "sekretów" zdradzać za darmo. Skorzystałem z "algorytmy.pl" i naprawdę jestem z tego w 100% zadowolony, polecam - dla zawodowców (co się uczą) i amatorów (można skorzystać z gotowego rozwiązania).
Tomasz Czypicki
Cybernoxa
|
|
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]
imagesavealpha (PHP 4 >= 4.3.2, PHP 5) imagesavealpha --
Set the flag to save full alpha channel information (as opposed to
single-color transparency) when saving PNG images
Descriptionbool imagesavealpha ( resource image, bool saveflag )
imagesavealpha() sets the flag to attempt to save
full alpha channel information (as opposed to single-color transparency)
when saving PNG images.
You have to unset alphablending
(imagealphablending($im, FALSE)), to use it.
Alpha channel is not supported by all browsers, if you have problem with
your browser, try to load your script with an alpha channel compliant
browser, e.g. latest Mozilla.
Notatka: Fa funkcja wymaga GD 2.0.1 lub nowszego.
See also imagealphablending().
User Contributed Notesdoggz at mindless dot com
06-Oct-2003 06:50
To use PNG-24 in IE 5.5+ try:
<img alt="Transparant PNG" src="myimage.gif" style="width: 200px; height: 200px; filter:progid:
DXImageTransform.Microsoft.AlphaImageLoader(src='myimage.png', sizingMethod='scale')" />
there is more info available at http://people.brandeis.edu/~peelle/png/
|