PNG BMP
Конвертация файлов

Конвертировать PNG в BMP

Конвертировать сейчас
БЫСТРЫЙ ОТВЕТ
Возможно ли конвертировать PNG в BMP?
Да - PNG конвертируется в BMP.

Вы можете сделать это прямо здесь с помощью нашего бесплатного конвертера - регистрация не нужна, и ваш файл будет удален сразу после завершения.

Use the free converter on this page: upload your .png and download the .bmp in seconds. The biggest change to expect is file size - a PNG of a few hundred KB can expand to several MB as an uncompressed BMP. Transparent areas also become white, since BMP has no alpha channel.

Также в BMP: QOI · XPM · PPM

На этой странице

Протестировано на macOS, Windows и Linux
Последняя проверка: Sep 2026

Больше бесплатных конвертеров

HEIC, PNG, WEBP, MP3 и другие - все инструменты здесь бесплатны.

Открыть инструменты
Конвертер PNG → BMPБЕСПЛАТНО

Зачем конвертировать PNG в BMP?

BMP is required by some legacy Windows applications, industrial control software, older embedded systems, and Windows resource editors that do not accept PNG. Some older game engines also require BMP sprites. If the software you are targeting specifically asks for .BMP, converting from PNG is straightforward and causes no pixel quality loss.

Способы конвертации PNG в BMP

Windows Paint BUILT-IN

Right-click the PNG, choose Open with > Paint, then File > Save as > BMP picture.

macOS Preview BUILT-IN

Open the PNG in Preview, go to File > Export, and select BMP from the Format dropdown.

IrfanView FREE

Open the PNG and press S, set Save as type to BMP; use File > Batch Conversion for multiple files at once.

GIMP OPEN-SOURCE

Open the PNG in GIMP, flatten the image to remove transparency, then File > Export As with a .bmp filename.

Command line - ImageMagick CLI

Run magick in.png out.bmp; for a whole folder use magick mogrify -format bmp *.png.

Программы, которые конвертируют PNG

Об этих форматах

Качество и на что обратить внимание

  • BMP stores raw, uncompressed pixels - a PNG of a few hundred KB can easily become 5 MB or more as BMP.
  • Transparency is lost: PNG alpha channels are not supported in standard 24-bit BMP, so transparent areas become white.
  • No pixel quality is lost - because PNG is lossless, the BMP output is pixel-identical to the source.

Часто задаваемые вопросы

Does converting PNG to BMP lose image quality?
No pixel data is lost because PNG is already lossless. The only things dropped are transparency (alpha channel) and any metadata stored in PNG chunks.
Why is the BMP so much larger than the PNG?
PNG uses DEFLATE compression; BMP stores every pixel as raw bytes with no compression, so file size equals width x height x bytes-per-pixel.
What happens to transparent areas in the PNG?
They become white in the BMP since standard 24-bit BMP has no alpha channel; flatten the image onto your desired background color before converting if needed.
Can I batch-convert many PNG files to BMP?
Yes - IrfanView's Batch Conversion is the easiest GUI option on Windows; magick mogrify -format bmp *.png handles it on any platform via command line.