[PHP] [imagick] converting to variable instead of file

2003-09-06 Thread Decapde Azur
hi all, With imagick_writeimage() function, is it possible to send the image to a variable instead of dumping it to a file or to the client browser? Thanks PS (if I try this, it is to convert an image to xpm in a variable and use it in php-gtk) -- PHP General Mailing List

Re: [PHP] [imagick] converting to variable instead of file

2003-09-06 Thread Decapode Azur
I had thought too that it is possible to write a temp file for this image, but it would be much better i think if there was another way... Is it really impossible to prevent from this hard disk access ? -- Write it to a tem file then use file_get_contents() on the file name. [...] With

Re: [PHP] [imagick] converting to variable instead of file

2003-09-06 Thread Evan Nemerson
maybe create a fifo and write to that, then read from php? On Saturday 06 September 2003 04:17 pm, Decapode Azur wrote: I had thought too that it is possible to write a temp file for this image, but it would be much better i think if there was another way... Is it really impossible to