An open API service indexing awesome lists of open source software.

https://github.com/rekgrpth/pg_wkhtmltopdf

PostgreSQL implementation of Convert HTML to PDF using Webkit (QtWebKit).
https://github.com/rekgrpth/pg_wkhtmltopdf

postgresql wkhtmltopdf

Last synced: 11 months ago
JSON representation

PostgreSQL implementation of Convert HTML to PDF using Webkit (QtWebKit).

Awesome Lists containing this project

README

          

PostgreSQL implementation of Convert HTML to PDF using Webkit (QtWebKit).

### [Use of the extension](#use-of-the-extension)

```sql
select wkhtmltopdf_set_object_setting('page', 'https://github.com');
copy (
select wkhtmltopdf_convert()
) to '/var/lib/postgresql/wkhtmltopdf.pdf' WITH (FORMAT binary, HEADER false)
```