Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
function imagegreyscale( &$img, $dither=1 )
{
if( !($t = imagecolorstotal($img)) ) {
$t = 256;
imagetruecolortopalette($img, $dither, $t);
}
for( $c=0; $c<$t; $c++ ) {
$col = imagecolorsforindex($img, $c);
$min = min($col['red'], $col['green'], $col['blue']);
$max = max($col['red'], $col['green'], $col['blue']);
$i = ($max+$min)/2;
imagecolorset($img, $c, $i, $i, $i);
}
}
Tja, ich habe bei Google ganz einfach nach „site:de.php.net greyscale“ gesucht.Davidoof hat gesagt.:Ich hab mich schon fast blöd gesucht.