且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

使用python将图像复制到MacOS剪贴板

更新时间:2023-11-02 23:10:04

这小小的丑陋作品可以加载 image.jpg 到剪贴板上...

This little piece of ugliness works and loads "image.jpg" onto the clipboard...

#!/usr/bin/env python3

import subprocess

subprocess.run(["osascript", "-e", 'set the clipboard to (read (POSIX file "image.jpg") as JPEG picture)'])