Click here to Skip to main content
15,894,460 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hey all
i am work on windows mobile app.. that work as client and pc as server using WCF service and when i converte the Image on my PC to byte[]
to be able to transfer and it is work fine but when i accept the byte[] on mobile the quality veery ppooor i using
i using this code in mobile application

C++
byte[] a = imagefromserver();
MemoryStream ms = new MemoryStream(a);
Bitmap b = new Bitmap(ms);
picturebox1.image=b;

how can i retrive the quilty of the orignal picture stored in PC !!

thxxxxxxx
Posted
Updated 27-Jun-10 10:34am
v2
Comments
Sandeep Mewara 27-Jun-10 17:19pm    
What is the format of actual picture?
Ashraf ELHakim 27-Jun-10 17:38pm    
thx for ur replay the format is JPG

1 solution

I think you will find that it is the way the mobile is displaying it. To test, try sending the image BACK to the PC, and look at it then.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900