Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作一个应用程序,其中用户从照片库中选择一张图像,然后该图像需要使用肥皂在 Web 服务器上传递,图像以无符号字节传入肥皂的格式,我已将 UIImage 转换为 NSData,现在我该怎么做在 Web 服务器中将该 NSData 作为无符号字节格式传递。
请帮助我,因为我真的被这个问题困住了。
编辑: uint8 的标识符将是 %s
做这个:
NSData *data = UIImagePNGRepresentation(yourImage); if(data) { Byte *byteData = (Byte*)malloc([data length]); // unsigned byte memcpy(byteData, [data bytes], [data length]); }