Strumenti per acquisire e convertire il Web

Come aggiungere segnalibri o contorni ai documenti PDF?

Un elemento su una pagina web che viene caricato dopo il contenuto principale

GrabzIt può aggiungere automaticamente segnalibri a un documento PDF utilizzando la funzione di struttura incorporata del PDF, che replica il sommario delle funzionalità.

Per fare ciò, specificare il parametro di inclusione del contorno come mostrato di seguito. La struttura verrà quindi creata automaticamente analizzando l'HTML della pagina web per gli elementi H2 e H3 per generare segnalibri con il testo di questi elementi utilizzati per i nomi dei segnalibri, inoltre gli elementi H3 verranno automaticamente nidificati sotto gli elementi H2 nell'elenco dei segnalibri.

GrabzItClient grabzIt = new GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret");
PDFOptions options = new PDFOptions();
options.IncludeOutline = true;
grabzIt.URLToPDF("http://www.spacex.com", options);
grabzIt.Save("http://www.mywebsite.com/Home/Handler");
GrabzItClient grabzIt = new GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret");
PDFOptions options = new PDFOptions();
options.setIncludeOutline(true);
grabzIt.URLToPDF("http://www.spacex.com", options);
grabzIt.Save("http://www.mywebsite.com/handler");
<script src="https://cdn.jsdelivr.net/npm/@grabzit/js@3.5.2/grabzit.min.js"></script>
<script>
GrabzIt("Sign in to view your Application Key").ConvertURL("http://www.spacex.com", 
{"format": "pdf", "download": 1, "includeoutline": 1}).Create();
</script>
var grabzit = require('grabzit');

var client = new grabzit("Sign in to view your Application Key", "Sign in to view your Application Secret");
var options = {"includeOutline":true};
client.url_to_pdf("http://www.spacex.com", options);
client.save("http://www.example.com/handler", function (error, id){
    if (error != null){
        throw error;
    }
});
$grabzIt = GrabzItClient->new("Sign in to view your Application Key", "Sign in to view your Application Secret");
$options = GrabzItPDFOptions->new();
$options->includeOutline(1);
$grabzIt->URLToPDF("http://www.spacex.com", $options);
$grabzIt->Save("http://www.mywebsite.com/handler.pl");
$grabzIt = new \GrabzIt\GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret");
$options = new \GrabzIt\GrabzItPDFOptions();
$options->setIncludeOutline(true);
$grabzIt->URLToPDF("http://www.spacex.com", $options);
$grabzIt->Save("http://www.mywebsite.com/handler.php");
grabzIt = GrabzItClient.GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret")
options = GrabzItPDFOptions.GrabzItPDFOptions()
options.includeOutline = true
grabzIt.URLToPDF("http://www.spacex.com", options)
grabzIt.Save("http://www.mywebsite.com/handler.py")
https://api.grabz.it/services/convert?key=Sign in to view your Application Key&includeoutline=1&format=pdf&url=https%3A%2F%2Fspacex.com%2F
grabzIt = GrabzIt::Client.new("Sign in to view your Application Key", "Sign in to view your Application Secret")
options = GrabzIt::PDFOptions.new()
options.includeOutline = true
grabzIt.url_to_pdf("http://www.spacex.com", options)
grabzIt.save("http://www.mywebsite.com/handler/index")

Personalizzazione di segnalibri e contorni

I segnalibri possono essere personalizzati alterando l'HTML che verrà convertito in PDF. È possibile aggiungere un segnalibro H2 a qualsiasi elemento assegnandogli il file GrabzItBookmarkH2 Classe CSS, allo stesso modo un segnalibro H3 può essere aggiunto a un elemento assegnandogli il file GrabzItBookmarkH3 Classe CSS. Se desideri escludere un elemento HTML dall'utilizzo come segnalibro puoi assegnare il file GrabzItBookmarkExclude classe all'elemento. Un esempio dell'utilizzo di queste classi CSS speciali per personalizzare i segnalibri è mostrato nell'HTML seguente.

<html>
	<body>
		<h2 class="GrabzItBookmarkExclude">My Article</h2>
		<p>Ignorant branched humanity led now marianne too strongly entrance.</p>
		<span class="GrabzItBookmarkH2">Start here</span>
		<p>Rose to shew bore no ye of paid rent form.</p>
		<span class="GrabzItBookmarkH3">Then read this</span>
		<p>She which are maids boy sense her shade.</p>
	</body>
</html>