All Projects → hyrodium → ImageClipboard.jl

hyrodium / ImageClipboard.jl

Licence: MIT license
Copy & Paste images with Julia

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to ImageClipboard.jl

Clipman
A simple clipboard manager for Wayland
Stars: ✭ 182 (+451.52%)
Mutual labels:  clipboard
Windows User Action Hook
A .NET library to subscribe for Windows operating system global user actions such mouse, keyboard, clipboard & print events
Stars: ✭ 224 (+578.79%)
Mutual labels:  clipboard
copy-image-clipboard
Lightweight library to copy PNG and JPG images to clipboard
Stars: ✭ 37 (+12.12%)
Mutual labels:  clipboard
Piknik
Copy/paste anything over the network.
Stars: ✭ 2,221 (+6630.3%)
Mutual labels:  clipboard
Ditto
Ditto is an extension to the Windows Clipboard. You copy something to the Clipboard and Ditto takes what you copied and stores it in a database to retrieve at a later time.
Stars: ✭ 193 (+484.85%)
Mutual labels:  clipboard
Cheval
📋 Copy to the clipboard using JavaScript without writing JS. A full solution for all browsers and all devices. LibreJS compliant.
Stars: ✭ 231 (+600%)
Mutual labels:  clipboard
Gnome Shell Screenshot
Gnome Shell extension for making and uploading screenshots
Stars: ✭ 163 (+393.94%)
Mutual labels:  clipboard
clipsync-windows
Clipboard which sync with Android and Windows Platform.
Stars: ✭ 20 (-39.39%)
Mutual labels:  clipboard
Devcomrade
DevComrade - A copy/paste/run productivity improvement utility for developers
Stars: ✭ 206 (+524.24%)
Mutual labels:  clipboard
vim-poweryank
Copy text over SSH
Stars: ✭ 51 (+54.55%)
Mutual labels:  clipboard
Clipboard
React Native Clipboard API for both iOS and Android.
Stars: ✭ 198 (+500%)
Mutual labels:  clipboard
Clipboardy
Chrome extension for copying posted code to clipboard from stackoverflow.com, github.com & npmjs.com
Stars: ✭ 202 (+512.12%)
Mutual labels:  clipboard
Vscode Paste Image
paste image from clipboard to markdown/asciidoc directly!
Stars: ✭ 236 (+615.15%)
Mutual labels:  clipboard
Zsh Vi Mode
💻 A better and friendly vi(vim) mode plugin for ZSH.
Stars: ✭ 181 (+448.48%)
Mutual labels:  clipboard
no-clipboard-app
Share your clipboard text to your device like Oculus Go.
Stars: ✭ 12 (-63.64%)
Mutual labels:  clipboard
Ultratabsaver
The open source Tab Manager Extension for Safari.
Stars: ✭ 178 (+439.39%)
Mutual labels:  clipboard
Vim Yoink
Vim plugin that maintains a yank history to cycle between when pasting
Stars: ✭ 225 (+581.82%)
Mutual labels:  clipboard
WinPopclip
Popclip alternative for Windows
Stars: ✭ 76 (+130.3%)
Mutual labels:  clipboard
Copy-button
copy textview into anywhere
Stars: ✭ 14 (-57.58%)
Mutual labels:  clipboard
CopyPasteJS
This a small JS library to execute clipboard functions in a fast and easy way.
Stars: ✭ 20 (-39.39%)
Mutual labels:  clipboard

ImageClipboard.jl

Stable Dev Build Status Coverage

Copy & Paste images with Julia

Install

pkg> add ImageClipboard

Usage

Just like clipboard in InteractiveUtils deals with string contents, this package provides clipboard_img to work with image contents:

using Images, ImageClipboard

# Create a random image
img = rand(RGB{N0f8}, 100, 200)

# Copy the image to the clipboard
clipboard_img(img)

# Paste the image from the clipboard
img2 = clipboard_img()

# These are the same images
img == img2  # true

Sample screenshots

Copy an image

Paste an image

Julia Compatibility

For Julia versions older than v"1.3", you need to manually install the image IO backend ImageMagick.jl first.

Other related packages

  • ClipData.jl enables users to copy/paste to/from Excel, Google Sheets, and other tabular data sources into interactive Julia sessions.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].