Re: [PHP] GD lib not working

2004-12-05 Thread Jason Wong
Please do not top post. On Monday 06 December 2004 00:22, Dade Register wrote: > It's a new installation. I did restart Apache after re-compiling PHP. > phpinfo() shows my config command I used is: > ./configure' '--with-apxs2=/usr/local/apache2/bin/apxs' > '--with-mysql=/usr/local/mysql' '--with-

Re: [PHP] GD lib not working

2004-12-05 Thread Dade Register
It's a new installation. I did restart Apache after re-compiling PHP. phpinfo() shows my config command I used is: ./configure' '--with-apxs2=/usr/local/apache2/bin/apxs' '--with-mysql=/usr/local/mysql' '--with-zlib-dir=/usr/local/lib' '--with-jpeg-dir=/usr/local/lib' '--with-freetype-dir=/usr/lo

Re: [PHP] GD lib not working

2004-12-05 Thread Jason Wong
On Sunday 05 December 2004 17:37, Dade Register wrote: > It seems that my install of php does not like the GD library. I've tried > everything, and read past forum messages. Here's what I'm running: FreeBSD > 5.2.1 > Apache 2.0.52 > Php 5.0.2 > GD 2.0.32 > > Php compiles fine, and even the tests pa

[PHP] GD lib not working

2004-12-05 Thread Dade Register
It seems that my install of php does not like the GD library. I've tried everything, and read past forum messages. Here's what I'm running: FreeBSD 5.2.1 Apache 2.0.52 Php 5.0.2 GD 2.0.32 Php compiles fine, and even the tests pass for the GD lib, but any GD function fails including gdinfo() and

[PHP] GD lib security issues

2003-09-10 Thread Verdon vaillancourt
Hi, I use a fairly standard sort of reseller package (*nix and hsphere based) for hosting sites. Although the versions of php and mySQL are fairly up to date, the version of GD lib is frozen at 1.6.2. When I question my provider about this and when GD v2.x would be available, they replied that the

Re: [PHP] Gd Lib PHP.4.3.2 Gentoo

2003-06-24 Thread Sancar Saran
I change system from apach2 to apache it fixed... Sancar Saran -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Gd Lib PHP.4.3.2 Gentoo

2003-06-24 Thread Sancar Saran
Hi, Is there any problem on Php 4.3.2 GD lib ? My code works fine on Php 4.3.1 but not work 4.3.2 here code Header ("Content-type: image/jpeg"); $text = "some text"; $s= 20; $fontfile = "/usr/X11R6/lib/X11/fonts/truetype/arial.ttf"; $size = imagettfbbox($s,0,"$fontfile",$text); $dx

RE: [PHP] GD lib. image quality!

2002-08-25 Thread Rasmus Lerdorf
ave at Sinewaves.net" <[EMAIL PROTECTED]> > To: "Arcadius A." <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> > Sent: Sunday, August 25, 2002 12:23 PM > Subject: RE: [PHP] GD lib. image quality! > > > > imageCreate will create an image, but its palette w

RE: [PHP] GD lib. image quality!

2002-08-25 Thread Jason Reid
ot;Dave at Sinewaves.net" <[EMAIL PROTECTED]> To: "Arcadius A." <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, August 25, 2002 12:23 PM Subject: RE: [PHP] GD lib. image quality! > imageCreate will create an image, but its palette will be very limited, so

RE: [PHP] GD lib. image quality!

2002-08-25 Thread Dave at Sinewaves.net
adius A. [mailto:[EMAIL PROTECTED]] Sent: Sunday, August 25, 2002 4:11 AM To: [EMAIL PROTECTED] Subject: [PHP] GD lib. image quality! Hello! I wrote a little script for generation thumbnails of larger images $origImage = imageCreateFromJpeg($sourcePath."/".$currentImageName); $t

[PHP] GD lib. image quality!

2002-08-25 Thread Arcadius A.
Hello! I wrote a little script for generation thumbnails of larger images $origImage = imageCreateFromJpeg($sourcePath."/".$currentImageName); $thumbnail = imageCreate($thumbWidth,$thumbHeight);// create empty image imageCopyResized($thumbnail,$origImage,0,0,0,0,$thumbWidth,$thumbHeight,

Re: [PHP] GD Lib

2002-07-09 Thread Steve Edberg
Are you compiling php with the --with-gd=shared option? Personally (Solaris 8, gcc 2.95.3 , php 4.1.1 and later) I've never been able to get the gd shared object to work (gd.so load errors), so I've always ended up compiling it into PHP. -steve At 1:23 PM -0400 7/9/02, Yang wrote: >H

Re: [PHP] GD Lib

2002-07-09 Thread Yang
Hi Dave: I have gd installed and now the configure, make and make install are working fine. but aftere installation, I can't find any extension there. Yang "Dave Macrae" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Hi there; > > > > I installed Apache2.0

RE: [PHP] GD Lib

2002-07-09 Thread Dave MacRae
> Hi there; > > I installed Apache2.0.39 and PHP4.2.1 on RedHat Linux 7.2. The > installation > procedure is fine. The php installation inlcude gd and some > extension, but I > can't find the php-gd.so on my computer. > > Anybody can help? Looks like the problem is that you haven't installed

[PHP] GD Lib

2002-07-08 Thread Yang
Hi there; I installed Apache2.0.39 and PHP4.2.1 on RedHat Linux 7.2. The installation procedure is fine. The php installation inlcude gd and some extension, but I can't find the php-gd.so on my computer. Anybody can help? Yang -- PHP General Mailing List (http://www.php.net/) To unsubscrib

Re: [PHP] gd-lib and libjpeg issues

2001-11-14 Thread David Robley
On Thu, 15 Nov 2001 05:29, Bill Brennick wrote: > Hi all... Having an issue with PHP recognizing the libgd and libjpeg > libraries... I specifically downloaded the newest version(s) of those, > and compiled the PHP 4.0.6 with: > > ./configure --with-mysql=/usr/local/mysql > --with-apache=../apac

[PHP] gd-lib and libjpeg issues

2001-11-14 Thread Bill Brennick
Hi all... Having an issue with PHP recognizing the libgd and libjpeg libraries... I specifically downloaded the newest version(s) of those, and compiled the PHP 4.0.6 with: ./configure --with-mysql=/usr/local/mysql --with-apache=../apache_1.3.22 --with-xml --with-zlib --with-gd=/usr/lib --with

Re: [PHP] gd lib question.

2001-07-17 Thread Rasmus Lerdorf
> Just a quick question for anyone that uses GD-Lib prior to the > latest true-colo(u)r version (specifically v. 1.6.1) - if I try to > load a jpeg that has more than 256 colours in it, will it succeed? I > know the obvious answer is to try it and see...but I don't have it > here on my machine

[PHP] gd lib question.

2001-07-17 Thread Dave Mariner
Hi, Just a quick question for anyone that uses GD-Lib prior to the latest true-colo(u)r version (specifically v. 1.6.1) - if I try to load a jpeg that has more than 256 colours in it, will it succeed? I know the obvious answer is to try it and see...but I don't have it here on my machine, a