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).
- Host: GitHub
- URL: https://github.com/rekgrpth/pg_wkhtmltopdf
- Owner: RekGRpth
- License: mit
- Created: 2019-07-07T15:33:23.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2025-01-01T19:19:15.000Z (over 1 year ago)
- Last Synced: 2025-04-10T12:55:25.469Z (about 1 year ago)
- Topics: postgresql, wkhtmltopdf
- Language: C
- Homepage:
- Size: 19.5 KB
- Stars: 6
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```