This page serves as a guide for using the Pdfcrowd API to join or split PDF files, or update PDF attributes in .NET applications.
The API is designed for easy use and straightforward integration.
Below are .NET examples to help you quickly get started with the API.
Explore our additional examples for more insights.
usingSystem;usingSystem.IO;publicclassApiTest{publicstaticvoidMain(){try{// create the API client instancepdfcrowd.PdfToPdfClientclient=newpdfcrowd.PdfToPdfClient("demo","ce544b6ea52a5621fb9d55f8b542d14d");// configure the conversionclient.addPdfFile("/path/to/cover.pdf");client.addPdfFile("/path/to/proposal.pdf");client.addPdfFile("/path/to/price.pdf");client.addPdfFile("/path/to/contact.pdf");// run the conversion and write the result to a fileclient.convertToFile("offer.pdf");}catch(pdfcrowd.Errorwhy){System.Console.Error.WriteLine("Pdfcrowd Error: "+why);throw;}}}
usingSystem;usingSystem.IO;publicclassApiTest{publicstaticvoidMain(){try{// create the API client instancepdfcrowd.PdfToPdfClientclient=newpdfcrowd.PdfToPdfClient("demo","ce544b6ea52a5621fb9d55f8b542d14d");// configure the conversionclient.addPdfRawData(File.ReadAllBytes("/path/to/cover.pdf"));client.addPdfRawData(File.ReadAllBytes("/path/to/proposal.pdf"));client.addPdfRawData(File.ReadAllBytes("/path/to/price.pdf"));client.addPdfRawData(File.ReadAllBytes("/path/to/contact.pdf"));// run the conversion and write the result to a fileclient.convertToFile("offer.pdf");}catch(pdfcrowd.Errorwhy){System.Console.Error.WriteLine("Pdfcrowd Error: "+why);throw;}}}
usingSystem;usingSystem.IO;publicclassApiTest{publicstaticvoidMain(){try{// create the API client instancepdfcrowd.PdfToPdfClientclient=newpdfcrowd.PdfToPdfClient("demo","ce544b6ea52a5621fb9d55f8b542d14d");// configure the conversionclient.addPdfFile("/path/to/proposal.pdf");client.setPageWatermark("/path/to/watermark.pdf");// run the conversion and write the result to a fileclient.convertToFile("company_offer.pdf");}catch(pdfcrowd.Errorwhy){System.Console.Error.WriteLine("Pdfcrowd Error: "+why);throw;}}}
Authentication
To access the API, you will need to use your Pdfcrowd username and API
key. For initial testing, you may use the following demo credentials without
registering:
Username:demo
API key:ce544b6ea52a5621fb9d55f8b542d14d
To obtain your personal API credentials, consider starting a
free API trial
or purchasing the API license.
Error Handling
It is recommended that you implement error handling to catch errors the API
may return. Effective error handling is vital as it ensures application
stability and provides clearer diagnostics. See the example code below for
guidance on implementing error handling, and refer to this list of
status codes for more information.
try{// call the API }catch(pdfcrowd.Errorwhy){// print the errorSystem.Console.Error.WriteLine("Pdfcrowd Error: "+why);// print the error codeSystem.Console.Error.WriteLine("Pdfcrowd Error Code: "+why.getCode());// print the error messageSystem.Console.Error.WriteLine("Pdfcrowd Error Message: "+why.getMessage());}
Troubleshooting
If you are receiving an error, refer to the
API Status Codes for more information.
Utilize
setDebugLog() and getDebugLogUrl()
to obtain detailed information about the conversion process, including
load errors, load times, browser console output, etc.