Hi,
I am trying to print raw postscript data on windows.
win32print should do the work like this:
h=win32print.Op enPrinter(name)
win32print.Star tDocPrinter(h, 1, ("", "", "RAW"))
win32print.Writ ePrinter(h, file("p.ps").re ad())
win32print.EndD ocPrinter(h)
win32print.Clos ePrinter(h)
This works for some printers, but not for all. The
problem is, that no error messages or exceptions
occur.
Is there any other way to print raw data ? I am using
wx, but wx does not seem to provide this functionality.
Greetings, Uwe
Comment