The user right clicks on a file(say on the desktop) and clicks \'copy\' . Now how do I determine in C# if the file copied to the clipboard is an image type ?
Clipbo
You can easily check the clipboard if contains image or not:
if (Clipboard.ContainsImage()) { MessageBox.Show("Yes this is an image."); } else { MessageBox.Show("No this is not an image!"); }