ID: 13960 Updated by: sniper Reported By: [EMAIL PROTECTED] Old Status: Open Status: Feedback Bug Type: GD related Operating System: Windows XP PHP Version: 4.0.6 New Comment:
What if you use 127.0.0.1 instead of localhost ? --Jani Previous Comments: ------------------------------------------------------------------------ [2001-11-12 06:40:15] [EMAIL PROTECTED] Still has the same problem on Windows XP with a jpeg on an external server, but as you say, it works fine on the Linux version (tested on a snapshot build on my Cobalt Qube server). ------------------------------------------------------------------------ [2001-11-10 20:09:02] [EMAIL PROTECTED] Works fine for me on Linux. Could you please try with some external jpg? ie. Not on localhost? ------------------------------------------------------------------------ [2001-11-06 14:36:41] [EMAIL PROTECTED] The following code should give me the image served by my webcam server: $cam = ImageCreateFromJPEG('http://localhost:69/'); imagejpeg($cam); But instead gives me: Warning: imagecreatefromjpeg: Unable to open 'http://localhost:69/' for reading in c:\program files\apache\htdocs\webcam\cam.php If, however, I create a local copy of the output of the server, like this: $in = fopen('http://localhost:69/','rb'); $out = fopen('tempcam.jpg','wb'); while ( !feof($in) ) { $temp = fread ($in, 4096); fwrite($out,$temp); } fclose ($in); fclose($out); and then use ImageCreateFromJPEG on that file instead of the URL, it works perfectly. Therefore, ImageCreateFromJPEG doesn't re-use the fopen code correctly (as it should and is hinted to by the manual page saying that ImageCreateFromJPEG can open files or URLs). Bug 6825 seems to be similar, but for PHP 4.0.2. The bug was closed as it was allegedly fixed, but now seems to have re-surfaced. ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=13960&edit=1 -- PHP Development 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]