Hi,
I am trying to convert a canvas into a postscript file, which I can do with few lines of code, for example:
self._wCanvas = Canvas(self._wControlFrame,
width=210, height=400)
self._wCanvas.create_text(210, 100, text="Hello")
self._wCanvas.pack()...