How can print a memorstream

  • Thread starter Thread starter HaChe
  • Start date Start date
HaChe said:
I have a tiff file in memory stream. How can print it with out save as a
file.

Construct an 'Image' object from the memory stream using 'Image.FromStream'.
Then use the 'PrintDocument' object and draw the image onto the page in its
'PrintPage' event handler.
 
Back
Top