duandie5707 2015-04-07 12:04
浏览 144
已采纳

如何打印到实际打印机?

I have a messaging server written in Go. Now I have a requirement that some messages need to be printed out on paper by the server.

How can I implement this in Go? I'm having a real hard time finding anything on the subject.

The app will be running on Windows machines and needs to be able to print UTF8 encoded text in a fixed width font. So no fancy formatting (bold text, color etc) is needed.

I'm rather completely in the dark on how to go about this... Can someone shed some light on this for me and point me in the right direction?

  • 写回答

2条回答 默认 最新

  • duancanjiu3754 2015-04-08 10:52
    关注

    Using the answers from @abalos and @alex I was able to get this to work the way I need it to. Answering this to supply a sample of how to use it - it's pretty straightforward using alex's library:

    import prt "github.com/alexbrainman/printer"
    
    ...
    
    name, err := prt.Default() // returns name of Default Printer as string
    if err != nil {
        log.fatal(err)
    }
    p, err := prt.Open(name) // Opens the named printer and returns a *Printer
    if err != nil {
        log.fatal(err)
    }
    err = p.StartDocument("test", "text") // test: doc name, text: doc type
    if err != nil {
        log.fatal(err)
    }
    err = p.StartPage() // begin a new page
    if err != nil {
        log.fatal(err)
    }
    n, err := p.Write([]byte("Hello, Printer!")) // Send some text to the printer
    if err != nil {
        log.fatal(err)
    }
    fmt.Println("Num of bytes written to printer:", n)
    err = p.PageEnd() // end of page
    if err != nil {
        log.fatal(err)
    }
    err = p.DocumentEnd() // end of document
    if err != nil {
        log.fatal(err)
    }
    err = p.Close() // close the resource
    if err != nil {
        log.fatal(err)
    }
    

    More details on the Windows API can be found here

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊
  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写
  • ¥20 Qcustomplot缩小曲线形状问题
  • ¥15 企业资源规划ERP沙盘模拟
  • ¥15 树莓派控制机械臂传输命令报错,显示摄像头不存在
  • ¥15 前端echarts坐标轴问题
  • ¥15 ad5933的I2C