This may not be the best place to ask, but nowhere else could I find an answer. Basically I want to pack image data into an array of bytes.
Nevermind, I found it. Using the unpack() function in PHP: PHP: $data = file_get_contents("image.jpg");$bytes = unpack("C*", $data);//Blah......