Log in

View Full Version : bytes to image



hemi519
11-29-2010, 05:57 AM
Hi All,


I am getting image using sockets but I received on bytes. how can I convert bytes to a image object using php

traq
11-29-2010, 06:06 AM
try:

// assuming you've already gotten the image
// and assigned it to the var $png
// (and assuming it's a png - use appropriate content-type!)
header("Content-Type: image/png");
print $png;

hemi519
11-29-2010, 08:28 AM
is thr any way to print raw data that is coming from HTTP POST