wkhtmltopdf / packaging

Packaging of wkhtmltopdf releases
https://wkhtmltopdf.org/downloads.html#stable
305 stars 138 forks source link

Get binaries with unpatched qt #102

Closed velcrine closed 2 years ago

velcrine commented 2 years ago

I see that results of pdf with wkhtmltopdf(unpatched qt) are way better than with patched qt. Please tell, where can I get those builds as ubuntu by default gives unpatched qt, but I also require downloadable packages.

ashkulz commented 2 years ago

Just do apt-get install wkhtmltopdf? The official distro packages are the unpatched Qt binaries.

velcrine commented 2 years ago

they don't give ability to import # include wkhtmltox/pdf.h

I need to utilize the bindings too, and give my customer the best pdf experience...

velcrine commented 2 years ago

please reopen

ashkulz commented 2 years ago

You can just do apt build-dep wkhtmltopdf and then just do qmake && make in the source checkout -- all the binaries will be in bin/.

velcrine commented 2 years ago

oh thanks @ashkulz also before doing qmake && make, I would need to change gitsubmodule to unpatchedqt?

ashkulz commented 2 years ago

Nope, the submodule doesn't get used -- it uses the system Qt dependencies (apt build-dep is for that).

velcrine commented 2 years ago

oh thanks!!