I have a function created in C# (WinForms) which saves the file as gif image in local directory. How can I access it and send it to printing to one of my network printers?
I have this code here right now:
internal void PrintLabels(string printerInfo, List<string> shippingLabels)
{
//this is where I print to printer...
foreach (string labelPath in shippingLabels)
{
}
}
Any help?