I am serializing a JPEG Image in c#.net. I am simply converting it into a byte steam and sending it through web service. I observed that serialized byte stream is 30 times more than that of the size of actual image. Can any one suggest me a better approach to serialize and stay relative to the size of the actual image?
|
|
|||
|
|
|
Maybe just host the images on a web server and send a URL in the web service reply rather than the serialised image. This will also allow the client to cache the image locally when it can. |
||
|
|
|
|
Why not convert it to a Base64String?
On the other end you can change it back to a byte[] by going:
|
||
|
|
|
Consider using WCF streaming. I didn't notice an overhead transmitting files via this service. MSDN: |
||
|
|
|
|
And if the size of the images you send by webservices can be large, maybe you can take a look to MTOM. It's a WS-* standard to optimize the size of message with binary attachments. It's now very integrated in stacks like Axis2 or Metro for Java or in .NET : http://msdn.microsoft.com/en-us/library/aa528822.aspx (wse 3.0) http://msdn.microsoft.com/en-us/library/ms733742.aspx (wcf) |
||
|
|
|
|
|
||
|
|
|
|
JPEG is a compression technology, and it is expected that it will expand greatly once you read it in. This is the nature of the file format. Try to find a way to send the original JPEG file without reading it as an image first. |
||
|
|
|
|
Disclaimer: Non-informed person speaking |
||
|
|
