项目作者: restpackio

项目描述 :
Restpack.io C# client for HTML to PDF API, and Screenshot API
高级语言: C#
项目地址: git://github.com/restpackio/restpack-csharp.git
创建时间: 2019-05-08T11:03:06Z
项目社区:https://github.com/restpackio/restpack-csharp

开源协议:MIT License

下载


restpack-csharp

Official C# client for Restpack APIs

Installation

The recommended way to install restpack-csharp is through Nuget:

Install the latest restpack-csharp nuget module:

  1. $ dotnet add package Restpack

Finally, you need to require the library in your C# application:

  1. Using Restpack;

Screenshot API

For detailed documentation, please visit Screenshot API v7 Reference page.

  1. using System;
  2. using Restpack.Screenshot;
  3. namespace Program
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. var Screenshot = new Screenshot("<YOUR ACCESS TOKEN>");
  10. var options = new Screenshot.RequestOptions();
  11. options.Format = "png";
  12. options.Delay = 3000;
  13. // Capture given URL. Return the document details and CDN url of the Image
  14. var captureResult = Screenshot.Capture("https://google.com", options);
  15. Console.WriteLine(captureResult.Image);
  16. // Capture given URL. Return the image file as bytes[]
  17. var captureBytesResult = Screenshot.CaptureBytes("https://google.com", options);
  18. Console.WriteLine(captureBytesResult);
  19. // Capture given html content. Return the document details and CDN url of the Image
  20. var captureHTMLResult = Screenshot.CaptureHTML("<h1>Test</h1>", options);
  21. Console.WriteLine(captureHTMLResult.Image);
  22. // Capture given html content. Return the image file as bytes[]
  23. var captureBytesResult = Screenshot.CaptureHTMLBytes("<h1>Test</h1>", options);
  24. Console.WriteLine(captureBytesResult);
  25. }
  26. }
  27. }

HTML To PDF API

For detailed documentation, please visit HTML to PDF API v7 Reference page.

  1. using System;
  2. using Restpack.Html2Pdf;
  3. namespace Program
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. var Html2Pdf = new Html2Pdf("<YOUR ACCESS TOKEN>");
  10. var options = new Html2Pdf.RequestOptions();
  11. options.PDFOrientation = "landscape";
  12. // Convert given URL to PDF. Return the document details and CDN url of PDF
  13. var captureResult = Html2Pdf.Convert("https://google.com", options);
  14. Console.WriteLine(captureResult.Image);
  15. // Convert given URL to PDF. Return the PDF document as Buffer
  16. var captureBytesResult = Html2Pdf.ConvertBytes("https://google.com", options);
  17. Console.WriteLine(captureBytesResult);
  18. // Convert given html content to PDF. Return the document details and CDN url of PDF
  19. var captureHTMLResult = Html2Pdf.ConvertHTML("<h1>Test</h1>", options);
  20. Console.WriteLine(captureHTMLResult.Image);
  21. // Convert given html content to PDF. Return the PDF document as Buffer
  22. var captureBytesResult = Html2Pdf.ConvertHTMLBytes("<h1>Test</h1>", options);
  23. Console.WriteLine(captureBytesResult);
  24. }
  25. }
  26. }