This line in my code :
imageCopy($im,$source,10,10,0,0,$this->width,$this->height);
Give me a segmentation fault in apache :
[Fri Aug 31 13:58:43 2001] [notice] child pid 4158 exit signal Segmentation
fault (11)
If I replace this fonction by
imageCopyMerge($im,$source,10,10,0,0,$this->width,$this->height,100);
(which, according the documentation, sould give the same result as
imageCopy)
I have no segmentation fault, but some images got a very bad aspect, like in
16 colors or so...
My configuration :
PHP 6.0.4
Configuration Commande :
'./configure' '--with-mysql' '--enable-ftp' '--enable-track-vars'
'--with-gd' '--enable-native-tt' '--with-freetype-dir=/usr/local'
'--with-jpeg-dir' '--with-png-dir' '--with-zlib-dir'
'--with-apache=../apache_1.3.19' '--enable-track-vars' '--enable-sockets'
'--enable-trans-sid'
freetype-2.0.4
gd-2.0.1
mysql-3.23.41
pdflib-4.0.1
Thx a lot.