The fastest way to convert a picture to JPG on Mac

The simplest method is to use the Preview app that comes built into every Mac. Open the image file in Preview, click File in the menu bar, select Export As, choose JPEG from the Format dropdown, name your file, and click Save. The whole process takes about 30 seconds and works with PNG, TIFF, GIF, and most other image formats.

If you have multiple pictures to convert, you can batch-convert them using Automator, which is also free and built into macOS. This saves time if you're working with dozens of files at once. For occasional single conversions, Preview is faster and requires no setup.

Key Takeaways

  • Preview, the default Mac image viewer, can convert any picture to JPG in seconds using File > Export As.
  • You can adjust the quality slider when exporting to JPG, which controls file size and image sharpness.
  • Automator lets you convert many pictures at once without opening each one individually.
  • Online converters work but require uploading your file to a website, while Preview keeps everything on your computer.

Converting a single picture using Preview

Open the image you want to convert by right-clicking it in Finder, selecting Open With, and choosing Preview. Alternatively, double-click the image if Preview is already set as your default image viewer. Once the image is open, look at the menu bar at the top of your screen.

Click File, then click Export As (not "Save As" — that option saves in Preview's native format). A dialog box will appear. In the Format dropdown near the bottom, select JPEG. Type a new filename if you want to rename the file, or keep the existing name. Choose where you want to save it using the folder navigation on the left side of the dialog. Click Save.

A small window may appear asking about JPEG quality. The slider ranges from low quality (smaller file size) to high quality (larger file size). For most purposes, the default setting works fine. Move the slider if you need a smaller file or sharper image, then click Save again. Your JPG file is now ready to use.

Adjusting quality and file size when exporting

When you export to JPG, Preview shows a quality slider that directly affects both how the image looks and how large the file is. A higher quality setting produces a sharper image but creates a bigger file. A lower quality setting makes the file smaller but may show visible blurriness or color banding, especially in photos with gradients or fine details.

For photos you plan to email or upload to the web, a quality setting around 60 to 75 percent usually balances sharpness and file size. For images you want to print or use in professional work, move the slider closer to 90 percent. If you're converting a screenshot or straightforward graphic, even 50 percent quality is often acceptable. You can always export the same image multiple times with different settings to find what works for your needs.

Converting multiple pictures at once with Automator

If you have many images to convert, Automator can do them all in one batch. Open Automator by clicking the Spotlight icon (magnifying glass) in the top-right corner of your Mac, typing "Automator," and pressing Enter. Click File, then New, and select Quick Action.

In the search box on the left side, type "image" to find image-related actions. Drag Change Type of Images into the workflow area on the right. Set the dropdown to JPEG. Leave the other settings at their defaults unless you want to adjust quality. Click File, then Save, and give your workflow a name like "Convert to JPG."

Now you can convert images without opening Automator again. Select one or more image files in Finder, right-click, choose Quick Actions, and click the name of your workflow. All selected images will convert to JPG in seconds. The original files stay unchanged — Automator creates new JPG versions.

Using the command line for advanced control

If you're comfortable with Terminal, you can convert images using the sips command (Scriptable Image Processing System), which comes built into macOS. Open Terminal by pressing Command + Space, typing "Terminal," and pressing Enter. Navigate to the folder containing your images using the cd command.

Type sips -s format jpeg input.png --out output.jpg, replacing "input.png" with your actual filename and "output.jpg" with what you want to name the result. Press Enter and the conversion happens when ready. To convert all PNG files in a folder to JPG at once, type for f in *.png; do sips -s format jpeg "$f" --out "${f%.png}.jpg"; done and press Enter. This method is faster for large batches but requires basic Terminal knowledge.

When to use online converters versus Mac tools

Online image converters like CloudConvert or Zamzar work on any device and don't require software installation. However, they require uploading your file to a website, which means your image leaves your computer. For personal photos or sensitive images, using Preview or Automator keeps everything on your Mac and is more find.

Online converters are useful if you're on a borrowed computer or need to convert a format that Preview doesn't handle well. Most Mac tools handle common formats like PNG, GIF, TIFF, and BMP without trouble. If you're converting an unusual format or need advanced editing during conversion, an online tool might be worth the upload time. For routine conversions of standard photo formats, your Mac's built-in tools are faster and more private.

Troubleshooting common conversion problems

If Preview won't open your image, the file may be corrupted or in a format Preview doesn't recognize. Try opening it in another app first — if it opens nowhere, the file itself may be damaged. If the exported JPG looks blurry or has strange colors, you likely set the quality too low. Re-export the same image with a higher quality setting.

If you're converting a PNG with a transparent background to JPG, remember that JPG doesn't support transparency. Preview will automatically fill the transparent areas with white or another solid color. If you need to preserve transparency, keep the file as PNG or convert to a format that supports it, like TIFF or PNG. If Automator doesn't appear in your Quick Actions menu after saving a workflow, restart your Mac and try again — sometimes the system needs to refresh.

Frequently Asked Questions

Will converting to JPG make my picture smaller?

Yes, JPG files are usually much smaller than PNG or TIFF files because JPG uses compression. The exact size depends on your quality setting — lower quality means smaller files. A high-quality JPG is still typically smaller than the same image as PNG, which is why JPG is popular for photos.

Can I convert a JPG to a different format on Mac?

Yes, the same Preview method works in reverse. Open the JPG in Preview, click File > Export As, choose a different format like PNG or TIFF from the dropdown, and save. Keep in mind that converting from JPG to PNG won't restore quality lost during the original JPG compression.

What's the difference between Export As and Save As in Preview?

Save As saves the image in Preview's native format (.preview), which preserves all editing tools and layers. Export As saves in standard image formats like JPG, PNG, or TIFF, which is what you want for sharing or using the image elsewhere. Always use Export As when converting between formats.

Does converting to JPG reduce the image quality?

JPG uses compression that removes some image data, so technically quality is reduced compared to the original. However, at high quality settings (80 percent or above), the loss is invisible to the human eye in most photos. Lower quality settings show visible loss, especially in images with fine details or text.

Can I batch-convert images without using Automator?

Yes, using Terminal with the sips command is faster for large batches and doesn't require setting up a workflow. You can also use third-party apps like ImageMagick or GraphicConverter, though these require installation. For most users, Automator is the easiest free option that comes with macOS.