Sobre os arquivos BMP
Imagem BMP
Formato bitmap Windows legacy (1985). Sem compressão — arquivos grandes. Substituído por PNG moderno em quase todos os usos.
Família
Raster & Vector Images
Extensão
.bmp
Tipo MIME
image/bmp, image/x-ms-bmp
Pode ser usado como
COMO NASCEU O
FORMATO BMP.
BMP — short for Bitmap — is one of the oldest image formats still in everyday use. It shipped with Windows 1.0 in 1985 and with OS/2 shortly after. The design philosophy was "store pixels as pixels": no compression, no tricks, just a header describing dimensions and color depth followed by raw pixel data. That simplicity made it trivial for any Windows program to read or write a BMP in a few dozen lines of code.
For a while, BMP was everywhere. Windows wallpapers, clip art CD-ROMs, print-shop templates. Then JPEG and PNG arrived and BMP slowly retreated to technical niches: embedded systems with limited CPU, legacy Windows APIs, and educational programming exercises ("write a BMP parser" is still a CS101 assignment). Today .bmp is mostly a compatibility fallback, but its straightforwardness is why it refuses to die.
CURIOSIDADES E
FATOS INTERESSANTES.
A blank 4K BMP file takes up about 25 MB — the same image as PNG is typically under 100 KB.
BMP pixel rows are padded to 4-byte boundaries, which confuses anyone writing their first parser.
The format stores pixels bottom-to-top by default, the opposite of most modern formats.
Windows has updated the BMP header 6 times (BITMAPCOREHEADER through BITMAPV5HEADER) — a readable file might use any of them.
MS Paint defaulted to saving as BMP until Windows 7 quietly switched it to PNG in 2009.
VANTAGENS E
LIMITAÇÕES.
Vantagens
- Dead-simple format — trivially easy to read and write.
- Lossless and uncompressed — perfect bit-exact pixel storage.
- Universally supported in Windows applications since 1985.
- Supports 1, 4, 8, 16, 24, and 32-bit color depths.
Limitações
- Enormous file sizes — no meaningful compression in typical use.
- Not a web format — browsers support it but nobody serves BMPs over HTTP.
- No metadata support (no EXIF, no ICC profile in practice).
- Multiple header versions mean "a BMP" is ambiguous — parsers must handle several variants.
Tamanhos típicos de arquivo
Small icon (32×32)
4 KB
Screenshot (1920×1080)
~6 MB
4K image (3840×2160)
~25 MB
Scanned A4 at 300 dpi
~25 MB
Especificações técnicas
- MIME type
- image/bmp
- Extensions
- .bmp, .dib
- Compression
- None (typical); RLE 4/8 bit (rare)
- Color depths
- 1, 4, 8, 16, 24, 32 bits per pixel
- Byte order
- Little-endian
CONVERTER A PARTIR DE
BMP
CONVERTER PARA
BMP
Casos de uso comuns
Windows system graphics, legacy applications, lossless image storage.
Formatos relacionados
Comparativos populares
BMP vs PNG
Diferenças, tamanho de arquivo e quando escolher cada formato.
BMP vs JPG
Diferenças, tamanho de arquivo e quando escolher cada formato.
BMP vs TIFF
Diferenças, tamanho de arquivo e quando escolher cada formato.
BMP vs ICO
Diferenças, tamanho de arquivo e quando escolher cada formato.
BMP vs SVG
Diferenças, tamanho de arquivo e quando escolher cada formato.
BMP vs PDF
Diferenças, tamanho de arquivo e quando escolher cada formato.
Conversões populares de BMP
Os destinos mais procurados ao converter arquivos BMP.
Perguntas frequentes sobre BMP
Perguntas frequentes
BMP (Bitmap) is a raster image formato developed by Microsoft para Windows. It stores images com no compressão by default, resulting in large tamanho do arquivos mas pixel-perfect quality. It has been part of Windows since version 1.0.
BMP arquivos abrir in Windows Paint, Photos, macOS Preview, GIMP, Photoshop, e virtually any image viewer. All Windows aplicativos support BMP natively.
PNG is melhor que BMP in almost every scenario since it fornece sem perdas compressão (smaller files), transparência support, e wider cross-platform use. BMP is mainly relevant para legacy Windows aplicativos.