Hi all,
I’m pleased to announce that I’ve registered ImageClipboard.jl, a package that can handle images on the system clipboard.
The followings are sample scripts and screenshots from the README.
using Images, ImageClipboard
# Create a random image
img = rand(RGB{N0f8}, 100, 200)
# Copy the image to clipboard
clipboard_img(img)
# Paste the image from clipboard
img2 = clipboard_img()
# These are the same images
img == img2 # true
copy an image to clipboard
paste an image from clipboard