Convert HTML to PostScript

I am looking for a free component or library that can convert HTML to PostScript (.ps file format). I am using .Net framework 1.1. Does anyone have experience in such a situation?

+1
source share
1 answer

You can use the HTML viewer control and print the html on a PostScript printer, which is output to a file. Not very elegant, but it will work. I think there are unix tools that do this, so you can find the port for one of them and use it through Process.Start.

+1
source

Source: https://habr.com/ru/post/1698795/


All Articles