This more then a .net question but I'm in Mathematica using.Suppose I want to get a image from my clipboard,so I make a function like following.If there is a image in your clipboard then you run this code.You will get a image NETObject:
Needs["NETLink`"]
InstallNET[];
LoadNETType["System.Windows.Forms.Clipboard", StaticsVisible -> True];
img=GetImage[]
(*« NETObject[System.Drawing.Bitmap]»*)
How to make the img be a image?There is a related post:
But his image from a Mathemtica expresssion.

Mathematica. :) – yode Dec 12 '16 at 09:40Clipboardnotebook solutions or even close votes as it could be seen as a duplicate to the one I linked to... – Albert Retey Dec 12 '16 at 10:09MathematicaI think?I just by clipboard to get a content. :) – yode Dec 12 '16 at 13:50Paste? – xzczd Mar 08 '17 at 14:10Pastewill not give any output,isn't it? – yode Mar 08 '17 at 14:46Paste[]; pic = ToExpression@First@NotebookRead@Experimental`NextCell[]; NotebookDelete@Experimental`NextCell[]; picis simpler. – xzczd Mar 08 '17 at 17:55