Danny O'Brien's TIL

View the Project on GitHub

Saving an image to the MacOS Photo Album

The Photo album on Mac desktops occupies an odd place in the file-system hierarchy. You’re encouraged to access it only through the Photo app, but it also appears as a location when you’re loading images in some application.

What you can’t do – at least very easily – is save an image to it. Safari has a right-menu option to save browser images to Photos, but I don’t use Safari. I do use Photos as a dumping ground for images, partly because it’s a much more convenient place for saving and editing them on iOS devices.

What I’ve wanted, for a while, is a command to take whatever image is in the clipboard (I’m a big clipboard user), and save that out as a photo. I asked ChatGPT to write me a program to do this, and it came up trumps. Here’s our conversation, with code.

You:

I’d like to write a function or extension or something that would let me “save clipboard (image) as a Photo” – ie save any image data as a new photo in Apple’s Photo album – in as many plaes in the macos interface as possible. Raycast or the command line might be the best place for this function to work, but I’m not wed to them. It should be a small, self-contained program, with fre dependencies. Language is unimportant, but Swift or AppleScript might be the best choices.

ChatGPT:

Thought about saving clipboard image to Photos for 13 seconds Below is a self‐contained approach in Swift that:

  1. Reads the current clipboard as an image (if any).

  2. Saves it to a temporary file.

  3. Tells Photos.app to import that file into your library. This is all done with no third‐party dependencies , just Swift + AppleScript calls under the hood. You can compile it into a small command‐line tool (or just run it as a Swift “script”) and then trigger it from anywhere: a Terminal alias, Raycast, FastScripts, etc.


1. The Swift source

Create a file named ClipboardToPhotos.swift with these contents:

#!/usr/bin/env swift

import Cocoa
import Foundation

// 1. Get the general pasteboard
let pasteboard = NSPasteboard.general

// 2. Try to read an NSImage from the clipboard
guard let image = NSImage(pasteboard: pasteboard) else {
    fputs("No image found on the clipboard.\n", stderr)
    exit(1)
}

// 3. Convert the image to PNG data
guard
    let tiffData = image.tiffRepresentation,
    let bitmap = NSBitmapImageRep(data: tiffData),
    let pngData = bitmap.representation(using: .png, properties: [:])
else {
    fputs("Failed to convert image to PNG.\n", stderr)
    exit(1)
}

// 4. Write the PNG data to a temporary location
let tempDir = URL(fileURLWithPath: NSTemporaryDirectory())
let tempFileURL = tempDir.appendingPathComponent("clipboard_image.png")
do {
    try pngData.write(to: tempFileURL, options: .atomic)
} catch {
    fputs("Failed to write PNG to disk: \(error)\n", stderr)
    exit(1)
}

// 5. Use AppleScript to tell Photos to import that file
let scriptSource = """
    tell application "Photos"
        import POSIX file "\(tempFileURL.path)"
    end tell
    """

if let script = NSAppleScript(source: scriptSource) {
    var errorDict: NSDictionary?
    script.executeAndReturnError(&errorDict)

    if let err = errorDict {
        fputs("AppleScript error: \(err)\n", stderr)
        exit(1)
    } else {
        print("Successfully imported image into Photos.")
    }
} else {
    fputs("Failed to create AppleScript object.\n", stderr)
    exit(1)
}

How it works


2. Running / Installing

A) As a Swift “script”

You can run it directly (assuming you saved it as ClipboardToPhotos.swift and marked it executable):

chmod +x ClipboardToPhotos.swift
./ClipboardToPhotos.swift

If your clipboard contains an image, it will appear in Photos shortly thereafter. If no image is found, it prints an error and exits.

B) As a compiled command‐line tool

Compile it once and then place the binary anywhere in your $PATH (e.g., in /usr/local/bin if you like):

swiftc ClipboardToPhotos.swift -o ClipboardToPhotos
mv ClipboardToPhotos /usr/local/bin

Then you can just type ClipboardToPhotos anywhere (Terminal, scripts, Raycast, etc.) to run it.


3. Integrating with Raycast or other launchers


Notes and tips

This approach should be minimal, free of external dependencies, and easy to tie into any workflow you prefer. Enjoy saving your clipboard images straight into Photos!