Programmatically “hello world” default SERVER-side printer in ASP.NET MVC

后端 未结 2 1505
北恋
北恋 2020-12-15 13:08

I have the printer installed and working on an intranet server and I want to programmatically send \"hello world\" to that default printer. This seems like the simplest thin

2条回答
  •  情话喂你
    2020-12-15 13:34

    Print "hello world" server-side in .NET

    1. Share the printer
    2. Create a PrintDocument object
    3. Reference the printer by name
    4. Add a method to provide content
    5. Print

    Code

    using System.Drawing;
    using System.Drawing.Printing;
    
    public void Print()
    {
      var doc = new PrintDocument();
      doc.PrinterSettings.PrinterName = "\\\\deployment-machine-name\\share-name";
      doc.PrintPage += new PrintPageEventHandler(ProvideContent);
      doc.Print();
    }
    public void ProvideContent(object sender, PrintPageEventArgs e)
    {
      e.Graphics.DrawString(
        "Hello world",
        new Font("Arial", 12),
        Brushes.Black,
        e.MarginBounds.Left,
        e.MarginBounds.Top);
    }
    

提交回复
热议问题