vote up 0 vote down star

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

flag

How are you sending the SMS, is itthrough a 3rd party gateway? – Macros Apr 25 at 16:09
Do you mean sending an MMS? en.wikipedia.org/wiki/Multimedia_Messaging_Service/… – Adrian Archer Apr 25 at 19:17

2 Answers

vote up 2 vote down check

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

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.