本文介绍了图像到位图的质量下降!!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嘿所有
我在Windows Mobile应用程序上工作..使用WCF服务作为客户端和PC作为服务器,当我将PC上的图像转换为byte []
能够传输,并且工作正常,但是当我在移动设备上接受byte []时,我会使用
我在移动应用程序中使用此代码

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

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


如何获取PC中存储的原始图片的细腻度!!

thxxxxxxx


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

thxxxxxxx

推荐答案


这篇关于图像到位图的质量下降!!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 17:10