如何将图像作为字节流发送到服务?
通过使用下面的代码,我将 Url 作为图像绑定到图像控件。如何将其作为字节流再次发送到服务?请帮我...
enter code here
string userimage="http://{ipadress}/sample.jpg";
Uri uri = new Uri(userImage, UriKind.Absolute);
image2.Source = new BitmapImage(uri);