我需要将UI
Image转换为字节数组.我正在使用Xamarin的Visual Studio插件来生成一个iOS应用程序.
下面的代码获取图像,但是我需要通过服务堆栈发送它作为字节数组而不是UIImage.
var signatureView = new SignaturePad.SignaturePadView(new RectangleF(10,660,300,150)); signatureView.BackgroundColor = UIColor.White; this.View.AddSubview(signatureView); UIImage signatureImage = signatureView.GetImage();
解决方法
从
ChrisNTR年无耻地偷走
using (NSData imageData = image.AsPNG()) { Byte[] myByteArray = new Byte[imageData.Length]; System.Runtime.InteropServices.Marshal.Copy(imageData.Bytes,myByteArray,Convert.ToInt32(imageData.Length)); }