捕獲和轉換Web的工具

How to Convert a Webpage to PDF using GrabzIt's PDF API網頁轉PDF

Often you can come across important information on the internet that you may want to save for future reference. The internet changes often, so there's no guarantee that a webpage will always be available in the future. This is where converting a webpage to a PDF comes in handy. In this article, we will discuss the various methods and tools available to convert a webpage to a PDF.

Save 離線觀看網站

One of the easiest ways to convert a webpage to a PDF is by using a webpage to PDF converter. GrabzIt provides a PDF converter through its 在線工具. Simply enter the URL of the webpage you want to convert and then download the PDF file. It also offers additional features such as customizing the layout and adding watermarks.

For those with programming knowledge, you can also convert a webpage to a PDF using a programming language such as PHP. Which then calls the webpage to PDF API to allow you to generate a PDF from a URL or HTML code. This method may require more technical knowledge, but it offers more ways to tailor the PDF exactly how you want.

This comes with the added advantage of allowing you to automate the process of converting webpages into PDFs. This allows you to int整合轉換過程 into your own website or application. Of course our API offer various advanced features. Such as customizing the layout, adding watermarks, and converting multiple webpages at once.

In fact GrabzIt's web page to PDF API is highly flexible. It lets you produce great, high quality, PDF files quickly and easily with all the basic features provided for free. 創建新帳戶 開始。

To see the API in action please enter the web page URL you wish to convert into a PDF document into the demo. The completed PDF will then be automatically download when our service has finished converting the webpage.

We made it faster to create a PDF from web pages located around the world. By using our global network of servers to create a nearby web browser instance to reduce latency.

網頁轉PDF API

Add GrabzIt's Webpage to PDF feature to your app using our API and one of nine supported programming languages. To begin converting pages, choose a language below to view code examples and instructions.

以下代碼段說明了轉換URL的簡便性 int使用ASP.NET的PDF。 要開始創建PDF屏幕截圖 下載ASP.NET庫, 拿你的 關鍵和秘密 進而 使用演示 包含在其中。 最後看看 ASP.NET的API文檔 找出使用GrabzIt API的所有方法。

GrabzItClient grabzIt = new GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret");
grabzIt.URLToPDF("https://www.tesla.com"); 
grabzIt.SaveTo("documents/result.pdf");

以下代碼段說明了轉換URL的簡便性 int使用Java的PDF。 要開始創建PDF屏幕截圖 下載Java庫, 拿你的 關鍵和秘密 進而 使用演示 包含在其中。 最後看看 Java API文檔 找出使用GrabzIt API的所有方法。

GrabzItClient grabzIt = new GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret");
grabzIt.URLToPDF("https://www.tesla.com"); 
grabzIt.SaveTo("documents/result.pdf");

The following code snippet illustrates how easy it is to convert webpages to PDF for free using JavaScript. To start creating PDF screenshots download GrabzIt的JavaScript庫。 然後得到你的 關鍵和秘密, 添加域 您要使用JavaScript,然後簽出 JavaScript的API文檔 to find out all the ways you can use GrabzIt's API. Remember to specify the PDF format.

<script src="https://cdn.jsdelivr.net/npm/@grabzit/js@/grabzit.min.js"></script>
<script>
GrabzIt("Sign in to view your Application Key").ConvertURL("https://www.tesla.com", 
{"format":"pdf"}).Create();
</script>

以下代碼段說明了轉換URL的簡便性 int使用Node.js的PDF。 要開始創建PDF屏幕截圖 下載Node.js程序包, 拿你的 關鍵和秘密 進而 使用演示 包含在其中。 最後看看 Node.js的API文檔 找出使用GrabzIt API的所有方法。

var grabzit = require('grabzit');

var client = new grabzit("Sign in to view your Application Key", "Sign in to view your Application Secret");
client.url_to_pdf("https://www.tesla.com");
client.save_to("documents/result.pdf", function (error, id){
    if (error != null){
        throw error;
    }
});

以下代碼段說明了轉換URL的簡便性 int使用Perl的PDF。 要開始創建PDF屏幕截圖 下載Perl庫, 拿你的 關鍵和秘密 進而 使用演示 包含在其中。 最後看看 Perl的API文檔 找出使用GrabzIt API的所有方法。

#!/usr/bin/perl

use GrabzItClient;

$grabzIt = GrabzItClient->new("Sign in to view your Application Key", "Sign in to view your Application Secret");
$grabzIt->URLToPDF("https://www.tesla.com");
$grabzIt->SaveTo("documents/result.pdf");

The below PHP code is an example of a PDF converter script showing how to convert an HTML page into使用PHP的PDF。 要開始創建PDF屏幕截圖 下載PHP庫, 拿你的 關鍵和秘密 進而 使用演示 包含在其中。 最後看看 PHP的API文檔 找出使用GrabzIt API的所有方法。

include("GrabzItClient.php");

$grabzIt = new \GrabzIt\GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret");
$grabzIt->URLToPDF("https://www.tesla.com"); 
$grabzIt->SaveTo("documents/result.pdf");

以下代碼段說明了轉換URL的簡便性 int使用Python的PDF。 要開始創建PDF屏幕截圖 下載Python庫, 拿你的 關鍵和秘密 進而 使用演示 包含在其中。 最後看看 Python的API文檔 找出使用GrabzIt API的所有方法。

from GrabzIt import GrabzItClient

grabzIt = GrabzItClient.GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret")
grabzIt.URLToPDF("https://www.tesla.com") 
grabzIt.SaveTo("documents/result.pdf") 

This code shows how simple it is to change a URL int使用GrabzIt的RESTful API的PDF。 的 API文檔 包含更多自定義捕獲內容的方式。

https://api.grabz.it/services/convert?key=Sign in to view your Application Key&format=pdf&url=https%3A%2F%2Fwww.tesla.com%2F
	

以下代碼段說明了轉換URL的簡便性 int使用Ruby的PDF。 要開始創建PDF屏幕截圖 下載Ruby Gem, 拿你的 關鍵和秘密 進而 使用演示 包含在其中。 最後看看 Ruby的API文檔 找出使用GrabzIt API的所有方法。

require 'grabzit'

grabzItClient = GrabzIt::Client.new("Sign in to view your Application Key", "Sign in to view your Application Secret")
grabzItClient.url_to_pdf("https://www.tesla.com")	
grabzItClient.save_to("documents/result.pdf") 	

You can further customize your converted files using 模板。 這些允許您為生成的任何PDF文檔創建高度靈活的頁眉和頁腳。

Save 網頁為PDF

If you have a website, CMS, or blog, you can let users save the current webpage as a PDF. You can do this by clicking on a link or button, by adding the Save 作為PDF插件 到您的網站。 此插件與所有瀏覽器兼容,包括Google Chrome和 Internet資源管理器。

將Web轉換為PDF的其他方法

Instead of converting one webpage, you can convert a whole website to PDF 使用特殊的 Web刮板模板. This template will instruct the web scraper to follow all the links on the entire website. The system converts every discovered link to PDF.

You are not limited to just converting URLs. To convert HTML or a saved webpage to PDF, you can use our 直接轉換HTML的API into PDF 文件。