I had the same problem with a batch of product photos. The backgrounds looked white at first, but once I uploaded them to my shop, the shadows and uneven lighting became much more noticeable.
I tried a few different methods to remove background from image on my Mac. These are the three that worked best for me:
- Any2Pic
I used Any2Pic when I had several product photos to process at once. The steps were pretty simple:
- I opened AI Image Editor.
- I clicked Add Images and imported my photos.
- I selected Remove BG and clicked Apply Edit.
- I checked the edges, selected PNG, and clicked Save Image.

It processed the photos locally and kept their original dimensions. The edges around smaller product details also looked cleaner than the results I got from some online tools.

This was the most convenient method for me because I could process several photos together instead of uploading them one by one.
2.The built-in macOS tool
For an occasional photo, I also tried the background-removal feature built into Finder. Apple has a guide explaining how Quick Actions in Finder work.

Here’s what I did:
- Selected the image in Finder.
- Right-clicked it.
- Chose Quick Actions → Remove Background.
- Waited for macOS to create a transparent PNG copy.
I then selected the result and pressed the Space bar to check it with Quick Look.
It was quick and didn’t require installing anything. However, I found that it sometimes struggled with fine edges or products that had colors similar to the background.
When the Finder option wasn’t available, I opened the image in Preview instead. Apple also explains how to remove a background in Preview.
3.Command line with rembg
I also tested rembg in Terminal. It’s free, runs locally, and is useful if you’re comfortable with command-line tools. Apple has a simple guide showing how to open Terminal on a Mac.

I installed it with:
python3 -m pip install "rembg[cpu]"
For one image, I used:
rembg i product.jpg product.png
For a folder of images, I used:
rembg p input-folder output-folder
It worked well and saved transparent PNG files, but setting it up took a little longer than the other methods.
For just one or two simple images, I’d use the built-in macOS option. For a larger batch of product photos, I found Any2Pic easier because I could import everything, check the results, and export the PNG files from one interface.
Here are two helpful Apple Support guides:
Perform quick actions in the Finder on Mac - Apple Support
Remove a background or extract an image in Preview on Mac - Apple Support