Tag

Tag: Sample Code

SelectPdf code samples. Use SelectPdf to generate the perfect PDF documents.

selectpdf HTML to PDF Converter Online

SelectPdf Online REST API – Node.js Client Library

SelectPdf cloud REST API is a platform independent PDF manipulation API. As a true REST API, it can be used with any language: .NET, Java, PHP, Python, Go, Ruby and many more. We are presenting today the dedicated Node.js client library for SelectPdf API. Using the SelectPdf Online REST API Node.js client library you can […]

selectpdf Html To Pdf REST API

SelectPdf Online REST API – Ruby Client Library

SelectPdf cloud REST API is a platform independent PDF manipulation API. As a true REST API, it can be used with any language: .NET, Java, PHP, Python, Go, Node.js and many more. We are presenting today the dedicated Ruby client library for SelectPdf API. Using the SelectPdf Online REST API Ruby client library you can […]

selectpdf Html To Pdf REST API

SelectPdf Online REST API – Perl Client Library

SelectPdf 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 […]

selectpdf Html To Pdf REST API

Web/HTML To PDF REST API and Javascript Sample

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. The following Javascript code samples uses SelectPdf Online HTML to PDF API. It’s […]

selectpdf Html To Pdf REST API

Web/HTML To PDF REST API for Perl Samples

Perl is a general-purpose programming language originally developed for text manipulation and now used for a wide range of tasks including system administration, web development, network programming, GUI development, and more. Perl is a family of high-level, general-purpose, interpreted, dynamic programming languages. The languages in this family include Perl 5 and Perl 6. Though Perl […]

selectpdf Html To Pdf REST API

Web/HTML To PDF REST API for Python Samples

Python is a widely used general-purpose, high-level programming language. Its design philosophy emphasizes code readability, and its syntax allows programmers to express concepts in fewer lines of code than would be possible in languages such as C++ or Java. The language provides constructs intended to enable clear programs on both a small and large scale. […]

selectpdf Html To Pdf REST API

Web/HTML To PDF REST API for Java Samples

SelectPdf API is the best when it comes to converting web pages to pdf. Just send your url or html string to our API and get back the perfect PDF document. Externalize the load from your servers. Outsource the html to pdf conversion to SelectPdf REST API and get the best results no matter the […]

selectpdf Html To Pdf REST API

Web/HTML To PDF REST API for PHP Samples

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. The following PHP code samples use v2 of SelectPdf Online HTML to PDF […]

selectpdf PDF LIBRARY for .NET, HTML to PDF Library

‘Hello World’ from SelectPdf

It’s very easy to use Select.Pdf SDK for .NET. Take a look at the simple code below. SelectPdf.PdfDocument doc = new SelectPdf.PdfDocument(); SelectPdf.PdfPage page = doc.AddPage(); SelectPdf.PdfFont font = doc.AddFont(SelectPdf.PdfStandardFont.Helvetica); font.Size = 20; SelectPdf.PdfTextElement text = new SelectPdf.PdfTextElement(50, 50, "Hello world!", font); page.Add(text); doc.Save("test.pdf"); doc.Close();