我正在使用Gtk3 UI为一些自制的Python3代码添加打印机界面,使用(主要)Eclipse Indigo和PyDev插件。
在开发PrintOperation回调时,我发现了一个问题,显然gi-introspection无法为Cairo Context找到正确的底层库结构。控制台中报告的错误是:
Traceback (most recent call last):
File "/home/bob/Projects/MovieList/src/MovieList/MovieListIO.py", line 203, in on_printDialog_draw_page
cr = context.get_cairo_context()
File "/usr/lib/python3/dist-packages/gi/types.py", line 43, in function
return info.invoke(*args, **kwargs)
TypeError: Couldn't find conversion for foreign struct 'cairo.Context'
起初我认为这与Eclipse和/或PyDev有关,因为我可以在Idle中运行程序而不会出现任何错误消息。但后来我发现,当使用内置的命令行Python工具打包程序进行部署时,安装的版本也会出错。因此,我编写了几个测试脚本来抽象打印机功能,试图找出正在发生的事情。在这两种情况下,关键行都在on_printOperation_draw_page()
回调中(标有注释)。
这是第一个测试脚本(脚本1,printTestPdf.py),它使用Poppler加载pdf文件,并使用系统打印对话框打印它:
#!/usr/bin/env python3
import os
from gi.repository import Gtk, Poppler
testFile = 'file://' + os.path.join(os.getcwd(), 'printTestPdf.pdf')
pdfDocument = Poppler.Document.new_from_file(testFile, None)
class Example(Gtk.Window):
def __init__(self):
super(Example, self).__init__()
self.init_ui()
def init_ui(self):
self.set_title("Print Pdf Test")
self.resize(230, 150)
self.set_position(Gtk.WindowPosition.CENTER)
self.connect("delete-event", Gtk.main_quit)
printButton = Gtk.Button('Press Me')
self.add(printButton)
printButton.connect('clicked', self.on_printButton_clicked)
self.show_all()
def on_printButton_clicked(self, widget):
"""
Handler for the button click.
"""
printOperation = Gtk.PrintOperation()
printOperation.connect('draw-page', self.on_printOperation_draw_page)
printOperation.set_job_name('Print Pdf Test')
printOperation.set_n_pages(pdfDocument.get_n_pages())
printOperation.run(Gtk.PrintOperationAction.PRINT_DIALOG,
parent=self)
def on_printOperation_draw_page(self, printOperation, context, pageNo):
"""
Handler for the draw-page signal from the printOperation.
"""
cr = context.get_cairo_context() # <-- THIS IS THE LINE
page = pdfDocument.get_page(pageNo)
page.render_for_printing(cr)
def main():
app = Example()
Gtk.main()
if __name__ == "__main__":
main()
这是第二个脚本(脚本2,printTestHtml.py),它几乎完全相同,只是它使用weasyprint加载HTML文件进行打印:
#!/usr/bin/env python3
import os
from gi.repository import Gtk
from weasyprint import HTML
testFile = os.path.join(os.getcwd(), 'printTestHtml.html')
pdfDocument = HTML(filename=testFile).render()
class Example(Gtk.Window):
def __init__(self):
super(Example, self).__init__()
self.init_ui()
def init_ui(self):
self.set_title("Print Html Test")
self.resize(230, 150)
self.set_position(Gtk.WindowPosition.CENTER)
self.connect("delete-event", Gtk.main_quit)
printButton = Gtk.Button('Press Me')
self.add(printButton)
printButton.connect('clicked', self.on_printButton_clicked)
self.show_all()
def on_printButton_clicked(self, widget):
"""
Handler for the button click.
"""
printOperation = Gtk.PrintOperation()
printOperation.connect('begin-print', self.on_printOperation_begin_print)
printOperation.connect('draw-page', self.on_printOperation_draw_page)
printOperation.set_job_name('Print HTML Test')
printOperation.set_n_pages(len(pdfDocument.pages))
printOperation.run(Gtk.PrintOperationAction.PRINT_DIALOG,
parent=self)
def on_printOperation_draw_page(self, printOperation, context, pageNo):
"""
Handler for the draw-page signal from the printOperation.
"""
cr = context.get_cairo_context() # <-- THIS IS THE LINE
page = pdfDocument.pages[pageNo]
page.paint(cr) # <-- there is a separate issue here
def main():
app = Example()
Gtk.main()
if __name__ == "__main__":
main()
这两个脚本都会生成一个内部pdf文档,该文档用于通过PrintOperation
draw_page
回调请求呈现每个页面。
现在,脚本是否以及如何成功或失败取决于它们运行的上下文。脚本1始终有效,除非它在空闲时脚本2发生故障后运行。在Eclipse中运行时,脚本2始终生成上面报告的错误消息。在空闲时,脚本2的行为很复杂。有时它会因第二个问题(标记)而失败,并且不会出现第一个故障。但是,由于我还没有建立的原因,它经常会产生原始错误,当它发生时,它会继续执行它,脚本1也显示错误,直到重新启动空闲。直接从命令行运行与Eclipse中的行为相匹配。我试图总结下面的这种行为:
* Eclipse
- Script 1: Always OK
- Script 2: Always Fails
* Command line
- Script 1: Always OK
- Script 2: Always Fails
* Idle
- Script 1: OK, except after failure of Script 2
- Script 2: Intermittent Fail. Knock-on to future runs (up to next error)
这种失败模式可能有助于确定根本问题是什么,但我无法理解它。
忽略空闲中的奇怪行为,脚本1和脚本2之间的区别可能是我原始问题的线索。为什么脚本1成功运行,而脚本2生成内省错误?
如果您能就出现问题提出任何建议,我将非常感激。如果你能提出解决方案,我将很高兴!
答案 0 :(得分:0)
鉴于缺乏响应,我提出了以下解决方法,它使用WebKit
代替weasyprint
从html进行解析,呈现和管理打印:
#!/usr/bin/env python3
import os
from gi.repository import Gtk, WebKit
testFile = 'file://' + os.path.join(os.getcwd(), 'printTestHtml.html')
class Example(Gtk.Window):
def __init__(self):
super(Example, self).__init__()
self.init_ui()
def init_ui(self):
self.set_title("Print Html WebKit Test")
self.resize(230, 150)
self.set_position(Gtk.WindowPosition.CENTER)
self.connect("delete-event", Gtk.main_quit)
printButton = Gtk.Button('Press Me')
self.add(printButton)
printButton.connect('clicked', self.on_printButton_clicked)
self.show_all()
def on_printButton_clicked(self, widget):
webView = WebKit.WebView()
webView.load_uri(testFile)
webFrame = webView.get_main_frame()
webFrame.print_full(Gtk.PrintOperation(),
Gtk.PrintOperationAction.PRINT_DIALOG)
def main():
app = Example()
Gtk.main()
if __name__ == "__main__":
main()
我认为正在发生的事情是,weasyprint会以某种方式干扰内省过程。我已在github上的weasyprint主页上将其作为错误提出。
答案 1 :(得分:0)
以防万一我正在寻找解决cairo错误的方法。
如果我的RPi3上有Pandas和Matplotlib发生此cairo错误。绘图窗口显示为空白。
我必须运行sudo apt-get install python-gobject-cairo
基于此:https://github.com/rbgirshick/py-faster-rcnn/issues/221