Image transfer to another machine

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

-- I am programatically capturing image and then transfering it to another
machine.
but the size of image depends on the screen resolution. I want to keep the
size of image very small and still it should also maintaine it's clairity so
that it can be transfered faster.

Can anyone tell me the way to do this

Mahesh A Deo, MCP
 
Use the Compress or GZip classes to compress the byte array containing
your image before sending it to the other machine and decompress it
there.
 
Back
Top