OTA bitmap
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |formattype=electronic |subcat=Graphics |extensions={{ext|otb}} }} == Overview == '''OTA bitmap''' ('''Nokia Over the Air Bitmap''') is a raster image format inte...") |
Dexvertbot (Talk | contribs) m (Change telparia.com samples link to template) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
|extensions={{ext|otb}} | |extensions={{ext|otb}} | ||
}} | }} | ||
− | |||
'''OTA bitmap''' ('''Nokia Over the Air Bitmap''') is a raster image format intended for use with SMS text messages. | '''OTA bitmap''' ('''Nokia Over the Air Bitmap''') is a raster image format intended for use with SMS text messages. | ||
Line 16: | Line 15: | ||
== Software == | == Software == | ||
− | * [ | + | * [[ImageMagick]] (format named OTB) |
+ | |||
+ | == Sample files == | ||
+ | * {{DexvertSamples|image/otaBitmap}} | ||
== Resources == | == Resources == | ||
* [[Wikipedia:OTA bitmap|Wikipedia article]] | * [[Wikipedia:OTA bitmap|Wikipedia article]] | ||
+ | |||
+ | [[Category:Nokia]] |
Latest revision as of 04:06, 28 December 2023
OTA bitmap (Nokia Over the Air Bitmap) is a raster image format intended for use with SMS text messages.
Contents |
[edit] Format
In simplest form, files have a 4-byte header. The first byte is 0x00
, the second is the width, the third is the height, and the fourth is 0x01
. This defines an uncompressed bi-level image, with a maximum pixel dimension of 255.
If the first byte is not zero, the file begins with one or more bytes containing flags that extend the format. The only extension that appears to be fully defined is one that allows pixel dimensions up to 65535. Incompletely-defined extensions imply that the format could support grayscale and paletted images, compression, and simple animation.
[edit] Specifications
[edit] Software
- ImageMagick (format named OTB)