ispCP - Board - Support
[ERLEDIGT] PHP und GD Library bundled (Debian Lenny) - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega International Area (/forum-22.html)
+--- Forum: German Corner (/forum-26.html)
+---- Forum: Archiv (/forum-54.html)
+---- Thread: [ERLEDIGT] PHP und GD Library bundled (Debian Lenny) (/thread-6738.html)



[ERLEDIGT] PHP und GD Library bundled (Debian Lenny) - EloKoN - 05-16-2009 04:06 AM

Hallo,

weiß jemand, wie ich die GD Library bundled mit PHP bekommen? Mir sollen Funktionen wie imagefilter() zur Verfügung stellen. Die Anleitung hier im Forum (php-cgi) für GD Library Bundled hat mir nicht geholfen, außerdem ist sie veraltet.

LG, EloKoN


RE: ispCP: PHP und GD Library bundled (Debian Lenny) - RatS - 05-16-2009 07:06 AM

Hast du mal das Paket
Code:
php5-gd

installiert?


RE: ispCP: PHP und GD Library bundled (Debian Lenny) - EloKoN - 05-16-2009 07:46 AM

Natürlich.


RE: ispCP: PHP und GD Library bundled (Debian Lenny) - FraggDieb - 04-18-2010 01:29 AM

*Push* Gibts was neues? Ein Kunde braucht die Funktion imagefilter()
Bin gerade bisschen was verwirrt...
php5-gd ist installiert..


RE: ispCP: PHP und GD Library bundled (Debian Lenny) - ZooL - 04-18-2010 03:32 AM

steht sie irgendwo in der php.ini als disable ? ; davor oder was sagt php_info dazu

mfg


RE: ispCP: PHP und GD Library bundled (Debian Lenny) - gOOvER - 04-18-2010 10:49 AM

php5-gd bundled ist automatisch mit ispCP installiert. Schau doch einfach mit phpinfo(); nach.

http://php.net/manual/de/function.imagefilter.php

btw: Der Thread vorher ist fast 1 Jahr alt. Was soll es da neues geben??


RE: ispCP: PHP und GD Library bundled (Debian Lenny) - ZooL - 04-18-2010 12:08 PM

einzige frage noch php-gd in der /etc/php5/conf.d aktiviert ? steht die datei dran drin die .ini ?
ich glaube das captcha von ispcp greift auch darauf zurück...

mfg


RE: [ERLEDIGT] PHP und GD Library bundled (Debian Lenny) - FraggDieb - 04-19-2010 05:48 AM

"The filters described here were written for the PHP-bundled build of GD, and may not be available in other releases. "
http://www.tuxradar.com/practicalphp/11/2/15

In der conf.d von php5 steht die gd.ini drin.
Er sacht aber:
Quote:function imagegreyscale(&$img, $dither=1) {
if (!($t = imagecolorstotal($img))) {
imagetruecolortopalette($img, $dither, 256);
$t = imagecolorstotal($img);
}
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']);
$r= $g= $b= ($max+$min)/2;
imagecolorset($img, $c, $r, $g, $b);
}
}

und

if (function_exists('ImageFilter')) {
ImageFilter($thumb, IMG_FILTER_GRAYSCALE);
} else {
imagegreyscale($thumb);
}

provisorisch gelöst jedoch frisst die funktion natürlich mehr leistung aber die bilder werden ja gecached, trotzdem nciht schön aber funktioniert Big Grin
Problematisch?