ďťż

[PHP] Jak przekształcić kolorowe zdjecie w czarno-białe

       

Podstrony


telcocafe

Tak jak w temacie, czy moze ktos wiej jak przeksztalcic kolorowe zdjecie w carno-biale??



imagecopymergegray()

lub to:

<?php function imagetograyscale($im) { if (imageistruecolor($im)) { imagetruecolortopalette($im, false, 256); } for ($c = 0; $c < imagecolorstotal($im); $c++) { $col = imagecolorsforindex($im, $c); $gray = round(0.299 * $col['red'] + 0.587 * $col['green'] + 0.114 * $col['blue']); imagecolorset($im, $c, $gray, $gray, $gray); } } ?> warto szukać w manualu...
Użytkownik Mathew edytował ten post 19 listopad 2006, 12:49
na PNGach: header("content-type: image/png"); $im = @imagecreatefrompng('obrazek.png') or die('Blad w inicjowaniu bibliotek GD!'); if ($im && imagefilter($im, IMG_FILTER_GRAYSCALE)) imagepng($im); else imagepng($im); imagedestroy($im);
Użytkownik DJ_ProG edytował ten post 19 listopad 2006, 15:36
  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • nvm.keep.pl

  • Sitedesign by AltusUmbrae.