Click here to Skip to main content
15,904,823 members
Articles / Programming Languages / C#
Article

Converting image files to OTA file format (Mobile Picture Message)

Rate me:
Please Sign up or sign in to vote.
3.81/5 (21 votes)
8 Jul 2005 198.3K   5.9K   26   35
A simple code for converting image files to OTA file format (Mobile Picture Message).

Introduction

I searched the internet for a program to convert the image files to the OTA file format, but there was none!!! So, I began researching for OTA file format details... finally, I wrote a program with C# to do this...

The source code and binary files are ready for download...

The main logic of this program is an algorithm for converting images. Mobile picture messages (OTA or OTB files) have a standard size: 72x28. First of all we must create a file (*.ota) and then write 4 standard bytes into it.

byte0 -> 0000 0000 (0)
byte1 -> 0100 1000 (72)
byte2 -> 0001 1100 (28)
byte3 -> 0000 0001 (1)

Now read image, pixel by pixel, from left to right and top to bottom, every 8 pixel makes a byte for writing to the file:

black pixels = 0
Other pixels = 1

An image with size 72x28:

has 72*28 = 2016 (bits)
every 8 bits = 1 byte => 2016 / 8 = 252
and 252(bytes) + 4(standard bytes) = 256 bytes

Finally, the file size is 256 bytes.

Download and read my source code to see this program working...

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
Iran (Islamic Republic of) Iran (Islamic Republic of)
Alireza Naghizadeh

Comments and Discussions

 
AnswerRe: Picture message Pin
Alireza Naghizadeh6-Jan-07 18:26
Alireza Naghizadeh6-Jan-07 18:26 
GeneralAbout This Program Pin
Pouria Soufi28-Mar-06 10:03
Pouria Soufi28-Mar-06 10:03 
GeneralWant Details abt OTA file format Pin
imran_3jan15-Mar-06 19:14
imran_3jan15-Mar-06 19:14 
GeneralRe: Want Details abt OTA file format [modified] Pin
basudekrishna28-May-06 19:37
basudekrishna28-May-06 19:37 
Generalwant details regarding ota image converter Pin
imran_3jan15-Mar-06 19:07
imran_3jan15-Mar-06 19:07 
AnswerRe: want details regarding ota image converter Pin
Alireza Naghizadeh1-Apr-06 5:04
Alireza Naghizadeh1-Apr-06 5:04 
QuestionRe: want details regarding ota image converter Pin
VGRamanath15-Jun-07 2:26
VGRamanath15-Jun-07 2:26 
AnswerRe: want details regarding ota image converter Pin
style of worlds19-Jan-08 21:15
style of worlds19-Jan-08 21:15 
NewsRe: want details regarding ota image converter Pin
style of worlds19-Jan-08 21:17
style of worlds19-Jan-08 21:17 
GeneralRe: want details regarding ota image converter Pin
Narendra Mahalik24-Aug-07 1:39
Narendra Mahalik24-Aug-07 1:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.