tags:

views:

1181

answers:

2

Hello everyone,

How do I convert a 32x16 pixel picture to a picture SMS message? I already have code to send normal text sms.But,I need help with sending picture sms.

Thanks

+2  A: 

Check out Converting image files to OTA file format. The code is in C#.

dommer
A: 

You need to encode the binary image format to a format (e.g. base64) that can be transferred following the SMS specifications for content streams. The SMS specification imposes some limits on the length of a single message (140 octets) and your picture really has to be smaller. Otherwise, this'll be transported as a series of SMSs which you'll need to pull together on the receiving end.

dirkgently