SelectPdf Online REST API – Perl Client Library

perl_logoSelectPdf Online REST API is a professional solution for managing PDF documents online. It now has a dedicated, easy to use, Perl client library that can be setup in minutes.

SelectPdf cloud API consists of the following:

HTML to PDF REST API – SelectPdf HTML To PDF Online REST API is a professional solution that lets you create PDF from web pages and raw HTML code in your applications.

PDF to TEXT REST API – SelectPdf Pdf To Text REST API is an online solution that lets you extract text from your PDF documents or search your PDF document for certain words.

PDF Merge REST API – SelectPdf Pdf Merge REST API is an online solution that lets you merge local or remote PDFs into a final PDF document.

All these APIs can be easily integrated with Perl using the dedicated client library.

Installation

Download selectpdf-api-perl-client-1.4.0.zip, unzip it and run:

cd selectpdf-api-perl-client-1.4.0
perl Makefile.PL
make
make test
make install

OR

Install SelectPdf Perl Client for Online API via CPAN: SelectPdf on CPAN.

cpanm SelectPdf

OR

Clone selectpdf-api-perl-client from Github and install the library.

git clone https://github.com/selectpdf/selectpdf-api-perl-client
cd selectpdf-api-perl-client
perl Makefile.PL
make
make test
make install

Get a trial key for SelectPdf online REST API

Once the library is installed, you need a key to be able to access the API.

GET A DEMO LICENSE KEY NOW
The free trial key for the online API is valid for 7 days and it includes 200 conversions.

Sample Code

Perl client library makes accessing SelectPdf online REST API very easy. Here are a few samples that present the main features of the API. For details and full list of parameters access the SelectPdf API Perl documentation on CPAN or the individual pages of the APIs: HTML to PDF API or PDF to TEXT API or PDF Merge API.

Convert HTML to PDF in Perl

The following sample shows the main features of the HTML To PDF API. Comment/uncomment code to convert an url to file or memory or also convert raw HTML to file or memory.

Convert HTML to PDF with custom header/footer in Perl

The following sample shows how to convert a web page to PDF and also setting a custom header or footer.

Extract text from PDF in Perl

The following sample shows how to extract the text from a PDF document using SelectPdf API. Comment/uncomment code to convert a local PDF or a PDF from a remote url to file or memory.

Search for text in PDF using Perl

The following sample shows how to search a PDF document for a specific text.

Merge PDFs using Perl

The following sample shows how merge several PDF documents into a final file. The source PDFs can be local files or PDFs from remote urls. The final PDF can be retrieved in memory or saved to a local file.

The above Perl samples can also be found in the following GitHub repository:
https://github.com/selectpdf/selectpdf-api-perl-client/tree/main/samples.