I have an image in a PictureBox, and I want to print it. No formatting, no nothing, just print it.
I\'ve been searching on Google but I\'ve got nothing, only people
Using the location, I have this FileInfo extension method that does it:
public static void Print(this FileInfo value) { Process p = new Process(); p.StartInfo.FileName = value.FullName; p.StartInfo.Verb = "Print"; p.Start(); }