BMP(Bitmap Image File)
BMPは、Microsoft Windowsネイティブの非圧縮ラスター画像フォーマットです。圧縮なしでピクセルデータを保存するため、ファイルサイズは非常に大きくなりますが、品質の劣化はゼロです。BMPは主にWindowsのシステムグラフィックスや画像処理の中間フォーマットとして使用されます。
MIMEタイプ
image/bmp
種類
バイナリ
圧縮
無劣化
メリット
- + Zero compression means zero quality loss
- + Simple format easy to read and write programmatically
- + Native Windows support without external libraries
デメリット
- − Extremely large file sizes
- − Not suitable for web delivery
- − Limited browser support outside Windows
.BMPを使うタイミング
Windowsシステムプログラミングや可逆中間フォーマットなど、非圧縮のピクセルデータが必要な場合にのみBMPを使用してください。
技術的詳細
BMPはデバイス非依存のビットマップとしてピクセルデータを保存し、オプションのRLE圧縮に対応しています。1ビットから32ビットまでの色深度をサポートし、8ビットアルファチャンネルも含まれます。
歴史
BMPは1985年にWindows 1.0とともにOS/2およびWindowsプラットフォームのネイティブ画像フォーマットとして導入されました。最新バージョンではICCカラープロファイルをサポートするなど、何度か更新されています。
.BMPから変換
.BMPに変換
関連フォーマット
関連用語
Learn More
Image Format Guide: JPEG vs PNG vs WebP vs AVIF
Choosing the right image format affects file size, quality, and browser compatibility. This comparison covers the strengths of JPEG, PNG, …
How to Resize Images for Web Without Losing Quality
Serving properly sized images is critical for web performance. Images that are too large waste bandwidth and slow page loads, …
Batch Image Conversion: Best Practices for Bulk Processing
Converting hundreds of images one by one is tedious and error-prone. Learn how to set up efficient batch conversion workflows …
How to Remove Image Backgrounds Effectively
Removing backgrounds from product photos, portraits, and logos is a frequent task in design and e-commerce. This guide covers techniques …
Troubleshooting Image Quality Loss During Conversion
Converting between image formats sometimes produces unexpected quality degradation. This guide explains why quality loss happens and how to minimize …
Image Optimization for Core Web Vitals and SEO
Images directly impact Core Web Vitals scores, especially Largest Contentful Paint. Learn how to optimize images for faster loading, better …