adrg / go-wkhtmltopdf

Handcrafted Go bindings for wkhtmltopdf and high-level HTML to PDF conversion interface
https://pkg.go.dev/github.com/adrg/go-wkhtmltopdf
MIT License
249 stars 21 forks source link

WARNING: QApplication was not created in the main() thread. #28

Closed yuanshanhshan closed 2 years ago

yuanshanhshan commented 2 years ago

can not use as a function WARNING: QApplication was not created in the main() thread.

adrg commented 2 years ago

Hi @yuanshanhshan. This is a known limitation of wkhtmltox, not of this package. The library must be initialized on the main thread and the conversion must be performed on the main thread as well. See my HTTP server example for more information.

yuanshanhshan commented 2 years ago

Thanks for your help.