Poppler 中的方法调用在GDate
我的 Python 代码中返回一个对象。我找不到如何很好地打印这个对象的方法。
在Python GI API Reference之后,我想出了以下内容:
gdate_object = annot_mapping.annot.get_date()
destination_buffer = '.' * 50
print('Output:', GLib.Date.strftime(destination_buffer, 50, '%c', gdate_object))
print('Buffer:', annot_time)
但是,这不会在缓冲区中放置任何内容,但会输出写入的缓冲区大小。
如何访问目标缓冲区?