ID: 20400 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Feedback +Status: Bogus Bug Type: *Graphics related Operating System: win32 PHP Version: 4.2.1 New Comment:
Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Thank you for your interest in PHP. On windows you need to open binary files with 'rb' not 'r'. If you still experience the problem even after changing the fopen flags try using the latest CVS snapshot. Previous Comments: ------------------------------------------------------------------------ [2002-11-12 14:30:51] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php4-latest.tar.gz For Windows: http://snaps.php.net/win32/php4-win32-latest.zip ------------------------------------------------------------------------ [2002-11-12 14:25:34] [EMAIL PROTECTED] The following PHP script is stable on *NIX platforms but unstable on Win32 platorms. <?php $LineLength = 50; $uploadfile = 'PATH TO IMAGE'; $uploadfile_name = 'PATH TO IMAGE'; $fd = fopen ($uploadfile, "r"); $size = filesize ($uploadfile); $c = substr ("$uploadfile_name", strrpos ($uploadfile_name, ".") + 1 ); $cont = fread ($fd, $size); fclose ($fd); $encimg = base64_encode ($cont); $imgcode = chunk_split ("$encimg", $LineLength, "'.'"); print $imgcode; ?> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=20400&edit=1
