I'm currently thinking about a problem I've run across.
I have a printer with "infinite" roll of paper and list of images to print.
The printer can cut the paper after the page has been printed and i need to write an application that will print a page and then cut it off after the page has been printed. (preferably in one print job not many print jobs for every page printed).
I've googled and found the command to send to the printer to cut the page.
I'm thinking of using .NET 4.5
and PrintDocument
class, but I'm a newb in printing and don't have a clear idea about how to achieve that. Can I please get an advice or an example of how to achieve that and if it is possible?
Question:
Is there an example of how to compose the printDocument && include the page cut command after every page is printed?