In article <[EMAIL PROTECTED]>,
Uwe Schmitt <[EMAIL PROTECTED]> wrote:
>I am trying to print raw postscript data on windows.
>win32print should do the work like this:
>
> h=win32print.OpenPrinter(name)
> win32print.StartDocPrinter(h, 1, ("", "", "RAW"))
> win32print.WritePrinter(h, file("p.
Hi,
I am trying to print raw postscript data on windows.
win32print should do the work like this:
h=win32print.OpenPrinter(name)
win32print.StartDocPrinter(h, 1, ("", "", "RAW"))
win32print.WritePrinter(h, file("p.ps").read())
win32print.EndDocPrinter(h)
win32print.ClosePrinter(h)