Why convert PCX to PDF?
PCX is a legacy raster format from 1985 that almost no modern software opens natively. Converting to .PDF makes the image viewable on any device without specialized tools. PDF is also the standard format for email attachments, document portals, and print queues.
How to convert PCX to PDF
IrfanView FREE
Open the .pcx file in IrfanView, then choose File > Save As and select PDF as the output format; batch conversion is also supported via File > Batch Conversion.
Print to PDF BUILT-IN
Open the PCX in any viewer that supports it and print to Microsoft Print to PDF - no extra installation needed on Windows 10/11.
GIMP FREE
Open the .pcx file in GIMP, then choose File > Export As and set the filename with a .pdf extension.
Command line - ImageMagick CLI
Run magick input.pcx output.pdf; use magick *.pcx combined.pdf to merge multiple PCX files into one multi-page PDF.
Programs that convert PCX
About these formats
A PCX file is a ZSoft PC Paintbrush bitmap image from 1985, one of the oldest raster formats on the PC. Almost any image program opens it for free - IrfanView or XnView on Windows, GIMP on…
Open .PCX details →A PDF (Portable Document Format) is a fixed-layout document that looks identical on every device - fonts, images, and layout are all embedded. Open it in any browser or the built-in viewer…
Open .PDF details →Quality & what to watch
- The PDF contains the PCX as a raster image, not selectable text - the result is not searchable.
- PCX files often have no reliable DPI metadata, so the output page may appear very large or very small; set the correct DPI before converting if print size matters.
- ImageMagick uses JPEG compression inside the PDF by default, which is lossy - add
-compress Losslessto the command to preserve original quality.
Frequently asked questions
Will converting PCX to PDF reduce image quality?
-compress Lossless to avoid it.Can I put multiple PCX files into one PDF?
magick *.pcx combined.pdf and each PCX becomes one page. XnConvert also supports batch conversion to a single PDF.Why does the PDF page size look wrong after conversion?
-density 300 to the ImageMagick command.