Print multiple images
        Posted  
        
            by Murat
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Murat
        
        
        
        Published on 2010-06-07T14:30:01Z
        Indexed on 
            2010/06/07
            15:42 UTC
        
        
        Read the original article
        Hit count: 424
        
I need to print a large image collection of pictures.
If I use something like:
printDocument.PrintPage += OnPrintPage;
printDocument.Print();
my printing task size in printer queue takes more than 1 GB!
Can anyone suggest how can I print the images one by one. Maybe some event like PrintJobIsFinished is available?
© Stack Overflow or respective owner