Skip to content

Instantly share code, notes, and snippets.

View BluntBlade's full-sized avatar
🎯
Focusing

BluntBlade BluntBlade

🎯
Focusing
View GitHub Profile
@BluntBlade
BluntBlade / impbcopy.m
Created November 22, 2021 11:25 — forked from mwender/impbcopy.m
Command line copy an image file to the clipboard in Mac OS X. See first comment for install instructions.
#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>
#import <unistd.h>
BOOL copy_to_clipboard(NSString *path)
{
// http://stackoverflow.com/questions/2681630/how-to-read-png-image-to-nsimage
NSImage * image;
if([path isEqualToString:@"-"])
{
// http://caiustheory.com/read-standard-input-using-objective-c