On Wed, 22 May 2002, Jas wrote:
>       $tmp_image = tmpfile();
>       $output = fopen($tmp_image, "wb");

tmpfile() opens the file, so you don't need the fopen call.

Just do $output = $tmpfile();

miguel


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to