Open the PDF in Adobe Acrobat Reader or Acrobat Pro
Select the “Export PDF” or “Save As” option
Choose “Image” as the export format
Select “JPEG” as the output type
Choose the page range (all pages or specific pages)
Click “Export” or “Save”
Select a destination folder and file name
Save the exported JPEGs
Use macOS Preview
Open the PDF with Preview
Select the page you want (if needed)
Go to “File” → “Export…”
Choose “JPEG” as the format
Set quality (if available)
Click “Save”
Use Windows (built-in) via Microsoft Print to PDF + image conversion workflow
Open the PDF in a viewer that supports printing
Choose “Print”
Select a printer that outputs images (or print to an image-capable tool)
Save the output as an image, then convert/export to JPEG using an image editor or converter
Use an online converter
Upload the PDF to a “PDF to JPG/JPEG” converter site
Select page range (if offered)
Download the resulting JPEG files
Use command line (ImageMagick)
Convert a single page: `magick input.pdf[0] output.jpg`
Convert all pages: `magick input.pdf output_%d.jpg`
Use command line (Ghostscript)
Convert all pages: `gs -sDEVICE=jpeg -o output_%03d.jpg input.pdf`
