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.
如何将 32x16 像素的图像转换为图片 SMS 消息?
我已经拥有发送普通短信所需的代码,但正在寻求发送图片短信的帮助。
查看将图像文件转换为 OTA 文件格式。代码在 C# 中。
您需要将二进制图像格式编码为可以按照内容流的 SMS 规范传输的格式(例如 base64)。SMS 规范对单个消息的长度(140 个八位字节)施加了一些限制,并且您的图片确实必须更小。否则,这将作为一系列 SMS 传输,您需要在接收端将它们组合在一起。