What value is $im? Is it a valid image? Check error codes.
-- WARNING [EMAIL PROTECTED] address is an endangered species -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm ----- Original Message ----- From: J. Anderson Scarbrough <[EMAIL PROTECTED]> Newsgroups: php.general To: <[EMAIL PROTECTED]> Sent: Monday, September 24, 2001 9:59 AM Subject: PHP and GD > I am trying to create PNG images on the fly > using the following code. > > if(file_exists($key)) { > $diff = time() - filemtime($key); > if($diff >= 600) { > unlink($key); > } > } > $im = ImageCreateFromPNG($value); > $isCreated = imagePNG($im, $key, '80'); file://error occurs here > > I recieve the following error on the line indicated above. > > imagepng: unable to open '/images/image1.png' for writing > > When I run phpinfo it shows PHP as begin copiled with GD support with PNG > enable on GD (see below) > > GD Support enabled > GD Version 1.6.2 or higher > PNG Support enabled > WBMP Support enabled > > The only other issue i could think of was permissions, but i have changed > permissions to "rwx" all the way across for the directory and all files > inside the directory. > > Any one have any ideas??? > > Thanks. > > > > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]