Recommend this page to a friend! |
SelectPdf Online REST API is a professional solution for managing PDF documents online. It now has a dedicated, easy to use, PHP client library that can be setup in minutes.
Download selectpdf-api-php-client-1.4.0.zip, unzip it and require SelectPdf.Api.php in your code.
OR
Install SelectPdf PHP Client for Online API from Packagist: SelectPdf API on Packagist.
composer require selectpdf/selectpdf-api-client
OR
Clone selectpdf-api-php-client from Github and require SelectPdf.Api.php in your code.
git clone https://github.com/selectpdf/selectpdf-api-php-client
cd selectpdf-api-php-client
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. The API is easy to use and the integration takes only a few lines of code.
Sign up for for free to get instant API access to SelectPdf HTML to PDF API.
<?php
require("SelectPdf.Api.php");
$url = 'https://selectpdf.com';
$localFile = "Test.pdf";
$apiKey = "Your API key here";
echo ("This is SelectPdf-" . SelectPdf\Api\ApiClient::CLIENT_VERSION . ".\n");
try {
$client = new SelectPdf\Api\HtmlToPdfClient($apiKey);
// set parameters - see full list at https://selectpdf.com/html-to-pdf-api/
$client
// main properties
->setPageSize(SelectPdf\Api\PageSize::A4) // PDF page size
->setPageOrientation(SelectPdf\Api\PageOrientation::Portrait) // PDF page orientation
->setMargins(0) // PDF page margins
->setRenderingEngine(SelectPdf\Api\RenderingEngine::WebKit) // rendering engine
->setConversionDelay(1) // conversion delay
->setNavigationTimeout(30) // navigation timeout
->setShowPageNumbers(false) // page numbers
->setPageBreaksEnhancedAlgorithm(true) // enhanced page break algorithm
// additional properties
// ->setUseCssPrint(true) // enable CSS media print
// ->setDisableJavascript(true) // disable javascript
// ->setDisableInternalLinks(true) // disable internal links
// ->setDisableExternalLinks(true) // disable external links
// ->setKeepImagesTogether(true) // keep images together
// ->setScaleImages(true) // scale images to create smaller pdfs
// ->setSinglePagePdf(true) // generate a single page PDF
// ->setUserPassword("password") // secure the PDF with a password
// generate automatic bookmarks
// ->setPdfBookmarksSelectors("H1, H2") // create outlines (bookmarks) for the specified elements
// ->setViewerPageMode(SelectPdf\Api\PageMode::UseOutlines) // display outlines (bookmarks) in viewer
;
echo ("Starting conversion ...\n");
// convert url to file
$client->convertUrlToFile($url, $localFile);
// convert url to memory
// $pdf = $client->convertUrl($url);
// convert html string to file
// $client->convertHtmlStringToFile("This is some <b>html</b>.", $localFile);
// convert html string to memory
// $pdf = $client->convertHtmlString("This is some <b>html</b>.");
echo ("Finished! Number of pages: " . $client->getNumberOfPages() . ".\n");
// get API usage
$usageClient = new \SelectPdf\Api\UsageClient($apiKey);
$usage = $usageClient->getUsage(true);
echo("Conversions remained this month: " . $usage["available"] . ".\n");
}
catch (Exception $ex) {
echo("An error occurred: " . $ex . ".\n");
}
?>
SelectPdf Pdf Merge REST API is an online solution that lets you merge local or remote PDFs into a final PDF document.
See PDF Merge API page for full list of parameters.
<?php
require("SelectPdf.Api.php");
$testUrl = "https://selectpdf.com/demo/files/selectpdf.pdf";
$testPdf = "Input.pdf";
$localFile = "Result.pdf";
$apiKey = "Your API key here";
echo ("This is SelectPdf-" . SelectPdf\Api\ApiClient::CLIENT_VERSION . ".\n");
try {
$client = new SelectPdf\Api\PdfMergeClient($apiKey);
// set parameters - see full list at https://selectpdf.com/pdf-merge-api/
$client
// specify the pdf files that will be merged (order will be preserved in the final pdf)
->addFile($testPdf) // add PDF from local file
->addUrlFile($testUrl) // add PDF From public url
// ->addFile($testPdf, "pdf_password") // add PDF (that requires a password) from local file
// ->addUrlFile($testUrl, "pdf_password") // add PDF (that requires a password) from public url
;
echo ("Starting pdf merge ...\n");
// merge pdfs to local file
$client->saveToFile($localFile);
// merge pdfs to memory
// $pdf = $client->save();
echo ("Finished! Number of pages: " . $client->getNumberOfPages() . ".\n");
// get API usage
$usageClient = new \SelectPdf\Api\UsageClient($apiKey);
$usage = $usageClient->getUsage(true);
echo("Conversions remained this month: " . $usage["available"] . ".\n");
}
catch (Exception $ex) {
echo("An error occurred: " . $ex . ".\n");
}
?>
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.
See Pdf To Text API page for full list of parameters.
<?php
require("SelectPdf.Api.php");
$testUrl = "https://selectpdf.com/demo/files/selectpdf.pdf";
$testPdf = "Input.pdf";
$localFile = "Result.txt";
$apiKey = "Your API key here";
echo ("This is SelectPdf-" . SelectPdf\Api\ApiClient::CLIENT_VERSION . ".\n");
try {
$client = new SelectPdf\Api\PdfToTextClient($apiKey);
// set parameters - see full list at https://selectpdf.com/pdf-to-text-api/
$client
->setStartPage(1) // start page (processing starts from here)
->setEndPage(0) // end page (set 0 to process file til the end)
->setOutputFormat(SelectPdf\Api\OutputFormat::Text) // set output format (0-Text or 1-HTML)
;
echo ("Starting pdf to text ...\n");
// convert local pdf to local text file
$client->getTextFromFileToFile($testPdf, $localFile);
// extract text from local pdf to memory
// $text = $client->getTextFromFile($testPdf);
// print text
// echo($text);
// convert pdf from public url to local text file
// $client->getTextFromUrlToFile($testUrl, $localFile);
// extract text from pdf from public url to memory
// $text = $client->getTextFromUrl($testUrl);
// print text
// echo($text);
echo ("Finished! Number of pages processed: " . $client->getNumberOfPages() . ".\n");
// get API usage
$usageClient = new \SelectPdf\Api\UsageClient($apiKey);
$usage = $usageClient->getUsage(true);
echo("Conversions remained this month: " . $usage["available"] . ".\n");
}
catch (Exception $ex) {
echo("An error occurred: " . $ex . ".\n");
}
?>
<?php
require("SelectPdf.Api.php");
$testUrl = "https://selectpdf.com/demo/files/selectpdf.pdf";
$testPdf = "Input.pdf";
$apiKey = "Your API key here";
echo ("This is SelectPdf-" . SelectPdf\Api\ApiClient::CLIENT_VERSION . ".\n");
try {
$client = new SelectPdf\Api\PdfToTextClient($apiKey);
// set parameters - see full list at https://selectpdf.com/pdf-to-text-api/
$client
->setStartPage(1) // start page (processing starts from here)
->setEndPage(0) // end page (set 0 to process file til the end)
->setOutputFormat(SelectPdf\Api\OutputFormat::Text) // set output format (0-Text or 1-HTML)
;
echo ("Starting search pdf ...\n");
// search local pdf
$results = $client->searchFile($testPdf, "pdf");
// search pdf from public url
// $results = $client->searchUrl($testUrl, "pdf");
// print results
$search_results_count = count($results);
$search_results_string = json_encode($results, JSON_PRETTY_PRINT);
echo ("Search results:\n$search_results_string\nSearch results count: $search_results_count.\n");
echo ("Finished! Number of pages processed: " . $client->getNumberOfPages() . ".\n");
// get API usage
$usageClient = new \SelectPdf\Api\UsageClient($apiKey);
$usage = $usageClient->getUsage(true);
echo("Conversions remained this month: " . $usage["available"] . ".\n");
}
catch (Exception $ex) {
echo("An error occurred: " . $ex . ".\n");
}
?>
Classes of Select Pdf | > | SelectPdf Online REST API PHP PDF Library Client | > | Download .zip .tar.gz | > | Support forum | > | Blog | > | Latest changes |
|
Groups | Applications | Files |
Groups |
HTML | HTML generation and processing | View top rated classes |
PHP 5 | Classes using PHP 5 specific features | View top rated classes |
Printing | Document generation and preparation for printing | View top rated classes |
Web services | Web data clipping, SOAP or XML-RPC clients and servers | View top rated classes |
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.
Files |
File | Role | Description | ||
---|---|---|---|---|
samples (5 files) | ||||
composer.json | Data | Auxiliary data | ||
LICENSE | Lic. | License text | ||
README.md | Doc. | Read me | ||
SelectPdf.Api.php | Class | Class source | ||
test.php | Example | Example script |
Files | / | samples |
File | Role | Description |
---|---|---|
html-to-pdf-headers-and-footers.php | Example | Example script |
html-to-pdf-main.php | Example | Example script |
pdf-merge.php | Example | Example script |
pdf-to-text.php | Example | Example script |
search-pdf.php | Example | Example script |
Download all files: selectpdf-api-php-cl.tar.gz selectpdf-api-php-cl.zip NOTICE: if you are using a download manager program like 'GetRight', please Login before trying to download this archive.
|