I have several byte arrays that contain jpeg images and I am trying to send them to a specific socket for viewing as mjpegs. I can do this for a single jpeg using the following header:
string header = "HTTP/1.1 200 OK\r\n" +
"Content-Type: multipart/x-mixed-replace;boundary=--myBoundary\r\n\r\n" +
"--myBoundary\r\n" +
"Content-Type: image/jpeg\r\n" +
"Content-Length: " + length + "\r\n\r\n";
then putting the jpeg byte array after the header and adding another "\r\n" at the end (footer).
But I would like to send 4-5 jpegs stacked on top of each other as the message to the socket. I tried simply adding another jpeg byte array between header and footer, that didn't work. So I tried adding a crlf between the jpegs, that didn't work either.
All of the images are of the same resolution (if that matters).
I'm sure there is a fairly simple solution to this, but I have not been able to find it. Anyone know the solution?