I have a folder which will contain only one tiff file at a time, so the moment I receive one I should be able to print it to the default printer. I have a small Windows application which is looking for any tiff files in the particular folder. I just have to print it to the default printer the moment a tiff file is received.
Does anyone have any idea how to do this using C#?
Open the TIFF image you would like to convert to PDF with the Photo app, then press "Ctrl + P" on your keyboard to open the "Print" option. If you want to convert multiple TIFF files to a PDF, just organize the TIFF files in advance and select them all with your mouse, then press the "Print" shortcuts.
You can select and print files in the TIFF format from a USB flash drive or other device.
In general “Normal” PDF files will offer the best quality for printing and viewing, as the bitmaps stored in TIFFs or image PDFs by their nature have a limited resolution. However, for most practical purposes the image quality of TIFFs at a suitable resolution will be sufficient.
Nations Photo Lab Both Nations Photo Lab and AdoramaPix accept images in TIFF format, which is especially important for serious photographers seeking professional photo printing.
As OP said in the question, this can be done with this piece of code:
System.Diagnostics.Process printProcess = new System.Diagnostics.Process();
printProcess.StartInfo.FileName = strFileName;
printProcess.StartInfo.Verb = "Print";
printProcess.StartInfo.CreateNoWindow = true;
printProcess.Start();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With