Your Mac already converts ARW to JPG, for free, with nothing to install. Open the file in Preview, choose File > Export, and set Format to JPEG. That is the whole job for one photo.
The rest of this guide is for the cases where that is not enough: a full card of files, an exact quality setting, or output that looks the way you expected instead of oddly flat.
One thing worth understanding first, because it explains most of the surprises. An ARW is not a picture. It is the raw sensor readout from your Sony camera, and it has to be interpreted before anyone can look at it. Your camera does that interpretation one way. macOS does it another way. That is why the exported JPG rarely matches the image you saw on the back of the camera.
Method 1: Preview (built in, no install)
Preview handles ARW natively and is the fastest route for a handful of files.
- Right-click the ARW, choose Open With > Preview.
- File > Export.
- Set Format to JPEG.
- Drag the Quality slider. Somewhere around three quarters is usually indistinguishable from maximum at roughly half the size.
- Save.
To batch it: select every ARW in Finder, press Return to rename or just drag them all onto the Preview icon, then in Preview press Cmd+A in the thumbnail sidebar and choose File > Export Selected Images. You get one quality setting applied to everything and a destination folder picker.
Best for: one shoot, one quality setting, no Terminal.
Method 2: Finder’s Convert Image Quick Action (fastest, no app opens)
Since macOS Monterey, Finder can convert images without opening anything, and it reads ARW.
- Select the ARW files in Finder.
- Right-click > Quick Actions > Convert Image.
- Set Format to JPEG, pick an image size, and choose whether to keep metadata.
- Click Convert to JPEG. The copies land next to the originals.
If Convert Image is not in the menu, enable it under System Settings > General > Login Items & Extensions > Extensions > Finder. Automator can also build a custom Quick Action with your own settings baked in, but for ARW to JPG the built-in one already does the job.
Limitation: the quality setting is fixed and the size choices are coarse (Small, Medium, Large, Actual Size). You take what Finder gives you.
Best for: a handful of files, right now, without opening an app.
Method 3: Terminal with sips (built in, scriptable)
sips ships with macOS and reads Sony RAW. Check for yourself:
sips --formats | grep -i sonyYou should see com.sony.arw-raw-image. Convert a single file:
sips -s format jpeg -s formatOptions 90 DSC01234.ARW --out DSC01234.jpgformatOptions takes 0 to 100, or the words low, normal, high and best. For a whole folder:
for f in *.ARW; do sips -s format jpeg -s formatOptions 90 "$f" --out "${f%.ARW}.jpg"doneThat is two lines and it costs nothing. If your files are lowercase .arw, change the pattern to match, or use *.[aA][rR][wW] to catch both.
Best for: folders, repeatable settings, anything you want to script.
Method 4: Photos (if the shoot is already imported)
If the ARWs are in your Photos library, you never needed to touch Finder.
- Select the photos.
- File > Export > Export Photos.
- Set Photo Kind to JPEG, pick a quality, and choose whether to export the edited version or the unmodified original.
The useful part here is that any adjustments you made in Photos get baked into the JPG. The other two methods ignore your edits and export the untouched RAW.
Best for: photos you have already culled and adjusted in Photos.
What the free methods do not do
All three work and all three are free. Be honest about which situation you are in before paying for anything.
The gap is not conversion, it is control. sips gives you a quality number and nothing else. Preview gives you a slider. Neither lets you resize on the way out, cap the file size, or convert to anything other than what the export sheet offers. And none of them give you any say over how the RAW is interpreted, which is the thing photographers usually actually want.
So:
- One ARW: use Preview. Do not overthink it.
- A card of ARWs, one quality: the
sipsloop above handles it. Two lines, free. - You need the JPGs resized or under a size limit as well: the loop grows a second
sipscall and starts to get fiddly. - You do this after every shoot, and you also want WebP, or specific dimensions, or a file-size budget: this is where the Terminal stops being the cheaper option in anything except money.
That last case is what Picmal is for. Drag in the card, pick JPG, set quality and dimensions in one pass, convert. It decodes ARW along with CR2, CR3, NEF, RAF, RW2, ORF and PEF, so a mixed-body shoot goes through in one batch. It is $39 once, and if you convert a couple of shoots a year the sips loop is genuinely the better answer.
Which method to choose
| Situation | Method |
|---|---|
| One ARW, quick JPG | Preview (free, built in) |
| A few files, no app, default settings | Finder Quick Action (free, built in) |
| A folder, same quality for all | sips loop (free, built in) |
| Already edited in Photos | Photos export (free, built in) |
| Every shoot, with resizing or a size budget | Picmal |
If you shoot more than one brand, the RAW converter for Mac page covers the other formats, and ARW to JPG has the format details.
What about ARW to PNG or TIFF?
Every method above does these too. In Preview, pick PNG or TIFF in the export sheet instead of JPEG. With sips, swap the format:
sips -s format png DSC01234.ARW --out DSC01234.pngsips -s format tiff DSC01234.ARW --out DSC01234.tiffWhether that is a good idea depends on why you are converting.
TIFF makes sense as an intermediate. It is lossless, it holds 16 bits per channel, and it is what you hand to an editor or a printer who cannot take your RAW. The files are large.
PNG rarely makes sense for a photograph. It is lossless, so the file is big, but unlike TIFF it is 8 bits per channel, so you carry the size penalty without keeping the editing headroom. Use it for screenshots and graphics, not for a photo off a sensor.
JPG is the right answer for anything going to a client, a website, or a phone. That is why the rest of this guide assumes it.
A note on color
If your exported JPGs look flatter or cooler than expected, nothing is broken. Sony cameras apply a Creative Style, white balance, and their own tone curve when they generate the JPG preview. macOS ignores all of that and applies Apple’s own RAW rendering.
You have three options. Accept Apple’s rendering, which is neutral and perfectly usable. Adjust in Photos before exporting, which is free and gets you most of the way. Or use a dedicated RAW developer like Capture One or Lightroom if matching the in-camera look precisely is part of the job. Converting is not the same as developing, and no converter will make that distinction go away.
Related guides
- Shooting more than Sony? How to convert RAW to JPG on Mac covers every brand’s format in one guide.
- Canon body in the bag too? CR3 to JPG and CR2 to JPG handle Canon’s formats, NEF to JPG covers Nikon.
- Converting a whole library, not just RAW? How to batch convert images on Mac handles hundreds of mixed files in one pass.

