PCX
PCX raster imageUsed for raster pictures made of individually stored pixels.
- Family
- Images
- MIME
- image/x-pcx
Convert PCX to BMP online and see exactly what pixel decoding and image re-encoding changes, what BMP still can't promise, and how to verify the result.
Zsoft paintbrush-era raster data using palette or run-length encoded pixels is decoded into a working pixel canvas first, then written back out under BMP's own color and compression model. Dimensions can stay exactly the same even as encoding, metadata, and fine detail change underneath. PCX decoding follows version, plane count, bytes-per-line padding, palette placement, run-length encoding, dimensions, and scanline order from its header. The BMP writer commits one rectangular pixel surface with explicit row order and color depth; it is aimed at simple bitmap interchange, not layered or multi-resolution artwork.
Decoded canvas - ZSoft Paintbrush-era raster data using palette or run-length encoded pixels. Written image - A broadly understood bitmap with straightforward pixel storage and little compression.
Used for raster pictures made of individually stored pixels.
Designed for pixel-based artwork, scans, and photographs.
BMP wins this route whenever its specific mix of compatibility, alpha, animation, and file size fits the destination better than PCX does.
Modern software may mishandle old palettes, planar channels, or uncommon bit-depth variants.
BMP derivatives are often much larger than web images and may encode alpha or row order differently between apps.
a broadly understood bitmap with straightforward pixel storage and little compression is what gets written, labeled as image/bmp. Whether that actually opens depends on the receiving application, not on the file extension.
Check palette colors, dimensions, orientation, bit depth, and whether indexed transparency was expected.
Confirm dimensions, color depth, orientation, and whether the receiving app reads transparency.