Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to transfer images through socket in java. There is a convenient method to send Image like a sequence of bytes.

ImageIO.write(image, "PNG", socket.getOutputStream());

But I don't need any format ("PNG","JPEG", etc.). Server is implemented on C-language within microcontroller evaluation board and doesn't support them. I want to send an image like a sequence of RGB565-pixels.

for example: 12_1F      24_C3      ...      67_02 .

Server receives it, sets (unsigned short *) pointer on data-field and I have acceses to

 pixel [0][0] (12_1F) 

of image-matrix through this pointer. After operation pointer++ we have access to the next

 pixel [0][1] (24_C3) 

and so on... Is it posible with ImageIO.write(...) or in other way?

share|improve this question

1 Answer

you could write your own imageWriter...

http://download.oracle.com/javase/1,5.0/docs/guide/imageio/spec/extending.fm4.html

share|improve this answer
It is better to transfer each pixel of image separatly... – Lucky Man Nov 20 '11 at 10:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.