Diese Demo zeigt, wie man die Online-Screenshot-Maschinen-API mit der Programmiersprache Visual Basic aufruft.
Zunächst müssen Sie auf der Website www.screenshotmachine.com ein kostenloses/Premium-Konto erstellen. Nach der Registrierung sehen Sie Ihren Kundenschlüssel in Ihrem Benutzerprofil. Auch hier wird eine Geheimphrase gepflegt. Bitte verwenden Sie immer eine geheime Phrase, wenn Ihre API-Aufrufe von öffentlich zugänglichen Websites aufgerufen werden.
Richten Sie Ihren Kundenschlüssel und Ihre Geheimphrase (falls erforderlich) im Skript ein:
Dim customerKey As String = "PUT_YOUR_CUSTOMER_KEY_HERE"
Dim secretPhrase As String = "" REM leave secret phrase empty, If Not needed
Legen Sie zusätzliche Optionen fest, um Ihre Anforderungen zu erfüllen:
Dim options As New Dictionary( Of String , String )
REM mandatory parameter
options.Add( "url" , "https://www.google.com" )
REM all next parameters are optional, see our website screenshot API guide for more details
options.Add( "dimension" , "1366x768" ) REM Or "1366xfull" For full length screenshot
options.Add( "device" , "desktop" )
options.Add( "format" , "png" )
options.Add( "cacheLimit" , "0" )
options.Add( "delay" , "200" )
options.Add( "zoom" , "100" )
Weitere Informationen zu den Optionen finden Sie in unserer Website-Screenshot-API.
Imports System.Net
Public Class Client
Public Shared Sub Main(args() As String )
Dim customerKey As String = "PUT_YOUR_CUSTOMER_KEY_HERE"
Dim secretPhrase As String = "" REM leave secret phrase empty, If Not needed
Dim options As New Dictionary( Of String , String )
REM mandatory parameter
options.Add( "url" , "https://www.google.com" )
REM all next parameters are optional, see our website screenshot API guide for more details
options.Add( "dimension" , "1366x768" ) REM or "1366xfull" for full length screenshot
options.Add( "device" , "desktop" )
options.Add( "format" , "png" )
options.Add( "cacheLimit" , "0" )
options.Add( "delay" , "200" )
options.Add( "zoom" , "100" )
Dim sm As ScreenshotMachine = New ScreenshotMachine(customerKey, secretPhrase)
Dim apiUrl As String = sm.GenerateScreenshotApiUrl(options)
REM use final apiUrl where needed
Console.WriteLine(apiUrl)
End Sub
End Class
Der generierte apiUrl
Link kann im <img>
-Tag platziert oder später in Ihrer Geschäftslogik verwendet werden.
Wenn Sie den aufgenommenen Screenshot als Bild speichern müssen, rufen Sie einfach Folgendes auf:
Dim apiUrl As String = sm.GenerateScreenshotApiUrl(options)
REM or save screenshot directly
Dim client As New WebClient()
Dim output As String = "output.png"
client.DownloadFile(apiUrl, output)
Console.WriteLine( "Screenshot saved as " + output)
Der aufgenommene Screenshot wird als Datei output.png
im aktuellen Verzeichnis gespeichert.
Legen Sie die PDF-Optionen fest:
Dim options As New Dictionary( Of String , String )
REM mandatory parameter
options.Add( "url" , "https://www.google.com" )
REM all next parameters are optional, see our website to PDF API guide for more details
options.Add( "paper" , "letter" )
options.Add( "orientation" , "portrait" )
options.Add( "media" , "print" )
options.Add( "bg" , "nobg" )
options.Add( "delay" , "2000" )
options.Add( "scale" , "50" )
Weitere Informationen zu den Optionen finden Sie in unserer Website-zu-PDF-API.
Imports System.Net
Public Class ClientPdf
Public Shared Sub Main(args() As String )
Dim customerKey As String = "PUT_YOUR_CUSTOMER_KEY_HERE"
Dim secretPhrase As String = "" REM leave secret phrase empty, If Not needed
Dim options As New Dictionary( Of String , String )
REM mandatory parameter
options.Add( "url" , "https://www.google.com" )
REM all next parameters are optional, see our website to PDF API guide for more details
options.Add( "paper" , "letter" )
options.Add( "orientation" , "portrait" )
options.Add( "media" , "print" )
options.Add( "bg" , "nobg" )
options.Add( "delay" , "2000" )
options.Add( "scale" , "50" )
Dim sm As ScreenshotMachine = New ScreenshotMachine(customerKey, secretPhrase)
Dim pdfApiUrl As String = sm.GeneratePdfApiUrl(options)
REM save PDF file
Dim client As New WebClient()
Dim output As String = "output.pdf"
client.DownloadFile(pdfApiUrl, output)
Console.WriteLine( "PDF saved as " + output)
End Sub
End Class
Die erfasste PDF-Datei wird als Datei output.pdf
im aktuellen Verzeichnis gespeichert.
Die MIT-Lizenz (MIT)