Blog
Wild & Free Tools

Convert PNG to JPG on Windows 10 and 11 — Free, No Install Required

Last updated: February 2026 7 min read
Quick Answer

Table of Contents

  1. Method 1: Browser converter (recommended)
  2. Method 2: Paint (built-in, limited)
  3. Method 3: PowerShell for batch conversion
  4. Windows-specific tips
  5. Frequently Asked Questions

Windows does not have a one-click PNG to JPG converter built in, but you do not need to install anything either. The fastest option is a browser-based tool that handles single files and batches with a quality slider. Paint works in a pinch but gives you no control over compression. And PowerShell can automate batch conversion if you are comfortable with the command line.

This guide covers all three approaches for Windows 10 and 11.

Method 1: Browser-Based Converter — The Fastest Way

Works in Chrome, Edge, Firefox, or any browser on Windows:

  1. Open the PNG to JPG converter
  2. Drag PNG files from File Explorer into the browser window (or click to browse)
  3. Adjust the quality slider — 90 is the default and works for most images
  4. Click Convert and download. For multiple files, use the Download All as ZIP button

This method gives you the most control: adjustable quality, file size comparison, batch processing with ZIP download, and zero software installation. Everything processes in your browser — the images stay on your PC.

Method 2: Using Paint (Quick but Limited)

Paint is pre-installed on every Windows machine. It can convert formats, but with significant limitations:

  1. Right-click your PNG file > Open With > Paint
  2. Click File > Save As > JPEG picture
  3. Choose a save location and click Save

That is it. Simple, but here is what Paint cannot do:

Paint is fine for a single quick conversion where quality does not matter much. For anything more, use the browser tool.

Sell Custom Apparel — We Handle Printing & Free Shipping

Method 3: PowerShell Script for Batch Conversion

Windows PowerShell can batch convert using .NET image libraries. Open PowerShell and run:

Get-ChildItem -Filter *.png | ForEach-Object {
  $img = [System.Drawing.Image]::FromFile($_.FullName)
  $jpgPath = $_.FullName -replace '\.png$','.jpg'
  $img.Save($jpgPath, [System.Drawing.Imaging.ImageFormat]::Jpeg)
  $img.Dispose()
}

This converts every PNG in the current directory to JPG. The catch: you cannot easily control the quality level without additional code, and the syntax is verbose. For most people, dragging files into the browser tool is faster.

If you work with image conversion regularly and prefer the command line, installing ImageMagick gives you access to magick mogrify -format jpg -quality 90 *.png, which is cleaner and supports quality control.

Windows-Specific Tips for PNG to JPG

A few things Windows users should know:

For a broader look at Windows image tools, see our Windows image format conversion guide.

Convert PNG to JPG on Windows — Free, No Install

Works in Chrome, Edge, or Firefox. Quality slider, batch support, ZIP download.

Open Free PNG to JPG Converter

Frequently Asked Questions

Can I convert PNG to JPG on Windows without downloading software?

Yes. Use a browser-based converter (works in Chrome, Edge, or Firefox) or the built-in Paint app (File > Save As > JPEG). No installation needed for either method.

Does Windows 11 have a built-in image converter?

Not a dedicated one. Paint can save images in different formats (File > Save As > JPEG), but it has no quality slider and only handles one file at a time. The Photos app cannot convert formats at all.

Can I just rename .png to .jpg to convert it?

No. Renaming the file extension does not change the actual image data. The file is still a PNG internally — some programs will reject it, and others may display it with errors. You need to actually re-encode the image using a converter.

How do I batch convert PNG to JPG on Windows?

The easiest way is a browser-based tool — drag all your PNGs at once and download JPGs as a ZIP. Alternatively, use PowerShell or install ImageMagick for command-line batch conversion.

Tyler Mason
Tyler Mason File Format & Converter Specialist

Tyler spent six years in IT support where file format conversion was a daily challenge.

More articles by Tyler →
Launch Your Own Clothing Brand — No Inventory, No Risk