ancwrd1 / ipp.rs

IPP protocol implementation for Rust
50 stars 10 forks source link

Not directly a IPP issue, more a cry for help... #31

Open MrFaul opened 2 weeks ago

MrFaul commented 2 weeks ago

Well the damn thing eats only URF... because PDF would be to easy... Any ideas or suggestions for a reliable rasterizer?

Oh and before anybody asks, it's a label printer.

ancwrd1 commented 2 weeks ago

URF like in Apple AirPrint? Ghostscript can produce it directly, as far as I know:

gs -sDEVICE=urf -sOutputFile=test.urf -dNOPAUSE -dQUIET -dBATCH test.pdf (or via FFI bindings to libgs, from the code).

For proprietary apps there are some commercial libraries for PDF rasterization, like Mako Core SDK or commercial version of XPdf, but they are generally expensive.