Sign inSign up

radmas/mtc-pdf-printer

By radmas

Updated 6 months ago

Node.JS Webkit PDF printer

Image
0

2.8K

radmas/mtc-pdf-printer repository overview

PDF Printer

Generates PDF files using a Chromium instance.

Download PDF from a single page

Request
curl -X POST \
  'https://pdf.mejoratuciudad.org:9091/pdf?download=true' \
  -H 'Cache-Control: no-cache' \
  -H 'Content-Type: application/json' \
  --output /tmp/output.pdf \
  -d '{
	"uri": "https://www.google.com/",
	"prefix": "FOO"
  }'
Response
PDF File located in /tmp/output.pdf

Get PDF URL from a single page

Request
curl -X POST \
  'https://pdf.mejoratuciudad.org:9091/pdf' \
  -H 'Cache-Control: no-cache' \
  -H 'Content-Type: application/json' \
  -d '{
	"uri": "https://www.google.com/",
	"prefix": "FOO"
  }'
Response
{
    "uploadedFileUri" : "http://pdf.mejoratuciudad.org:9091/public/FOO_2059f68e-8d82-421b-8825-c8dc3bc6320a.pdf"
}

Send PDF from a single page by email

Request
curl -X POST \
  'https://pdf.mejoratuciudad.org:9091/pdf/email' \
  -H 'Cache-Control: no-cache' \
  -H 'Content-Type: application/json' \
  -d '{
	"uri": "https://www.google.com/",
	"prefix": "FOO",
	"to": "[email protected]",
	"subject": "Hello",
	"html": "<b>Hello world</b>"
  }'
Response
{
    "accepted": [
        "[email protected]"
    ],
    "rejected": [],
    "envelopeTime": 106,
    "messageTime": 377,
    "messageSize": 76067,
    "response": "250 Ok 0102016d00cc9e25-99b0f13a-0a4a-4560-9a35-89d3740a6020-000000",
    "envelope": {
        "from": "[email protected]",
        "to": [
            "[email protected]"
        ]
    },
    "messageId": "<[email protected]>"
}

Tag summary

Content type

Image

Digest

sha256:e733dcc2d

Size

518 MB

Last updated

6 months ago

docker pull radmas/mtc-pdf-printer:mtx-canary-latest