Re: [PHP] imagecreate inside an object

2010-08-19 Thread Ashley Sheridan
On Fri, 2010-08-20 at 00:44 +0200, Lorenzo Marussi wrote: > hello list, > > I'm trying to manage a image resouce inside a method, but > unsuccessfully... > > In detail, that's some code snippets: > > the class and the method: > > class.php > > class canvas{ > > function makeImage($imageW

Re: [PHP] imagecreate() question

2007-04-02 Thread Edward Vermillion
Did you try making it transparent first, before adding the circle? Only a question because I'm not sure if it will make a difference. I know I had problems trying to get the alpha blending to actually look decent in png's (ended up looking like a very poor gif with a non- antialiased mask)

Re: [PHP] imagecreate() question

2007-04-02 Thread tedd
At 4:27 PM +0100 4/2/07, Richard Davey wrote: tedd wrote: In the php manual it says: imagecreate() returns an image identifier representing a blank image of specified size. We recommend the use of imagecreatetruecolor(). Q: Why the recommendation? Because the need to create 256 colour (or

Re: [PHP] imagecreate() question

2007-04-02 Thread Richard Davey
tedd wrote: In the php manual it says: imagecreate() returns an image identifier representing a blank image of specified size. We recommend the use of imagecreatetruecolor(). Q: Why the recommendation? Because the need to create 256 colour (or less) images grows less year by year. If you

Re: [PHP] imagecreate

2006-02-08 Thread Richard Davey
On 8 Feb 2006, at 14:20, Ross wrote: I am trying to replace the images in a page with this code This is fine here... http://www.ecurry.net/example1.php http://www.ecurry.net/example2.php but when I try and embed in inside a html page I get a garbled mess http://www.ecurry.net/menu6.php ht

RE: [PHP] imagecreate undefined...?

2004-02-13 Thread Vail, Warren
sure all the names above are correct and you can eliminate a lot of stuff for Win/Linux installations if you are not targeting both versions. Warren Vail -Original Message- From: Richard Davey [mailto:[EMAIL PROTECTED] Sent: Friday, February 13, 2004 8:07 AM To: Eric Cc: [EMAIL PROTECTED]

Re: [PHP] imagecreate undefined...?

2004-02-13 Thread Brian V Bonini
On Fri, 2004-02-13 at 11:00, Eric wrote: > However, when I run it, I get an error: > > Fatal error: Call to undefined function: imagecreate() in [file name] on line 3 Sound like your version was complied without GD support. http://www.php.net/manual/en/ref.image.php -- BrianGnuPG -> Key

Re: [PHP] imagecreate undefined...?

2004-02-13 Thread Richard Davey
Hello Eric, Friday, February 13, 2004, 4:00:02 PM, you wrote: E> Fatal error: Call to undefined function: imagecreate() in [file name] on line 3 E> I am running under MacOSX 10.3.2 and PHP 4.3.2. Sounds very much like you have PHP without the image library compiled into it. I don't know where to

Re: [PHP] ImageCreate / ImageCopyResized Path?

2003-10-09 Thread Jason Wong
You have started a new thread by taking an existing posting and replying to it while you changed the subject. That is bad, because it breaks threading. Whenever you reply to a message, your mail client generates a "References:" header that tells all recipients which posting(s) your posting refers

Re: [PHP] imagecreate() error

2003-07-17 Thread Michelle Bernard
YAY Got it working somewhat, now the so called image comes out garbled on the browser!! BUT getting close! "Michelle Bernard" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > no errors have come up yet, still getting the same problem too, I am pulling > out my hair :) everything els

Re: [PHP] imagecreate() error

2003-07-16 Thread Michelle Bernard
no errors have come up yet, still getting the same problem too, I am pulling out my hair :) everything else works nice and smoothly just this whole gd thing... "Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Do you get any error at apache start up or in error logs?

Re: [PHP] imagecreate() error

2003-07-14 Thread Marek Kilimajer
Do you get any error at apache start up or in error logs? Michelle Bernard wrote: Hi Philip, Thanks for your response, I tried those steps, still no go, getting that same error -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] imagecreate() error

2003-07-12 Thread Michelle Bernard
Hi Philip, Thanks for your response, I tried those steps, still no go, getting that same error "Philip Olson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello Michelle- > > a) Only enable one GD dll, so use php_gd2.dll. > b) Consider using imagecreatetruecolor() instead bu

Re: [PHP] imagecreate() error

2003-07-12 Thread Philip Olson
Hello Michelle- a) Only enable one GD dll, so use php_gd2.dll. b) Consider using imagecreatetruecolor() instead but either will work. c) When asking support questions, it's important to say exactly what version, although in this case we know it's 4.3.0-1 as php_gd.dll was removed in PH

Re: [PHP] imagecreate()

2003-02-27 Thread Marek Kilimajer
Tell us what is in the logs, they are in logs\ in the apache installation directory Anthony Ritter wrote: Chris, The function I'm trying to get...it's: imagecreate() I am using MS Win 98 / PHP 4 and Apache. I tried running the following script but got an undefined call to imagecreate() The fol

Re: [PHP] imagecreate()

2003-02-26 Thread Anthony Ritter
Chris, The function I'm trying to get...it's: imagecreate() I am using MS Win 98 / PHP 4 and Apache. I tried running the following script but got an undefined call to imagecreate() The following copy is located in my php.ini file...one of which is: .. ;extension=php_gd.dll ...

Re: [PHP] imagecreate()

2003-02-26 Thread Chris Shiflett
--- Anthony Ritter <[EMAIL PROTECTED]> wrote: > Fine Chris. > > Maybe you'd be kind enough to explain how I can get that function to work. This is an example of what I am talking about. I would love to help, but you are leaving out way too much information. What function? Why do you think it does

Re: [PHP] imagecreate()

2003-02-26 Thread Anthony Ritter
Fine Chris. Maybe you'd be kind enough to explain how I can get that function to work. I've uncommented the line in the php.ini file. In "Mastering PHP" (Sybex) on page 559 - Chapter 18, the authors of the textbook - Allen and Hornberger - say when using Win to: ... "uncommen

Re: [PHP] imagecreate()

2003-02-26 Thread Chris Shiflett
--- Anthony Ritter <[EMAIL PROTECTED]> wrote: > Yes Adam. > Any ideas? > > TR Please write emails that make sense if you are going to send them to the entire list. I have noticed a few of these "me too" type of emails today. Chris -- PHP General Mailing List (http://www.php.net/) To unsubscrib

Re: [PHP] imagecreate()

2003-02-26 Thread Anthony Ritter
Yes Adam. Any ideas? TR -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] imagecreate()

2003-02-26 Thread Adam Voigt
Did you restart? On Wed, 2003-02-26 at 12:41, Anthony Ritter wrote: On MS Win 98 / Apache / PHP 4 If somebody out there using Win can check my php.ini file and advise me what I'm doing wrong. I have uncommented: ..

Re: [PHP] Imagecreate and/or GD library not activated

2002-05-28 Thread Dennis Moore
check to see if gd is actually activated by using phpinfo() assuming you are using PHP4... /dkm - Original Message - From: "LeTortorec, Jean-Louis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 28, 2002 2:35 PM Subject: [PHP] Imagecreate and/or GD library not activated

Re: [PHP] imagecreate with Windows .exe installer

2002-02-22 Thread Andrey Hristov
Did you restarted the Apache service? Regards, Andrey Hristov - Original Message - From: "Mike Brackenridge" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 7:00 PM Subject: [PHP] imagecreate with Windows .exe installer > php4 installed with Apache on Windo

RE: [PHP] imagecreate with Windows .exe installer

2002-02-22 Thread Hunter, Ray
You need to have that dll installed on your system. You need to download php-version.zip file that contains all of the dlls in it to run with. Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Mike Brackenridge [mailto:[EMAIL PROTECTED]] Sent: Friday, February