Description
This class handles all communication with the GrabzIt screenshot web services.
Public Methods
- GetResult($id)
- URLToAnimation($url, $options = null)
- URLToImage($url, $options = null)
- HTMLToImage($html, $options = null)
- FileToImage($path, $options = null)
- URLToPDF($url, $options = null)
- HTMLToPDF($html, $options = null)
- FileToPDF($path, $options = null)
- URLToDOCX($url, $options = null)
- HTMLToDOCX($html, $options = null)
- FileToDOCX($path, $options = null)
- URLToTable($url, $options = null)
- HTMLToTable($html, $options = null)
- FileToTable($path, $options = null)
- URLToRenderedHTML($url, $options = null)
- HTMLToRenderedHTML($html, $options = null)
- FileToRenderedHTML($path, $options = null)
- URLToVideo($url, $options = null)
- HTMLToVideo($html, $options = null)
- FileToVideo($path, $options = null)
- Save($callBackURL = null)
- SaveTo()
- SaveTo($saveToFile)
- GetStatus($id)
- GetCookies($domain)
- SetCookie($name, $domain, $value = "", $path = "/", $httponly = false, $expires = "")
- DeleteCookie($name, $domain)
- GetWaterMarks()
- GetWaterMark($identifier)
- AddWaterMark($identifier, $path, $xpos, $ypos)
- DeleteWaterMark($identifier)
- SetLocalProxy($proxyUrl)
- UseSSL($value)
- CreateEncryptionKey()
- Decrypt($path, $key)
- DecryptFile($path, $key)
GetResult($id)
This method returns the screenshot itself. If nothing is returned then something has gone wrong or the screenshot is not ready yet.
Parameters
-
id - the unique identifier of the screenshot
Return Value
The capture
URLToAnimation($url, $options = null)
Specifiy the URL of the online video that should be converted into a animated GIF.
Parameters
-
url - the URL of the online video to convert into an animated GIF.
- Required
-
Accepts Vimeo and YouTube video URL's
- Warning animating Vimeo and YouTube videos depends on a third party and so may not provide consistent results.
- options - a instance of the GrabzItAnimationOptions class that defines any special options to use when creating the animated GIF.
Return Value
void
GrabzItAnimationOptions
The class represents all of the options available when creating an animated GIF.
Public Properties
-
setCustomId($value) - custom identifier that you can pass through to the animated GIF web service. This will be returned with the callback URL you have specified.
-
setWidth($value) - the width of the resulting animated GIF in pixels.
- Default: 180px
- Maximum: Maximum width for package
- Auto-size: -1 (passing -1 means that the width of the animated GIF is scaled in relation to its height, if the width is being auto-sized the height cannot)
-
setHeight($value) - the height of the resulting animated GIF in pixels.
- Default: 120px
- Maximum: Maximum height for package
- Auto-size: -1 (passing -1 means that the height of the animated GIF is scaled in relation to its width, if the height is being auto-sized the width cannot)
-
setStart($value) - the starting position of the video that should be converted into a animated GIF.
-
setDuration($value) - the length in seconds of the video that should be converted into a animated GIF.
- Default: maximum length for package
-
setSpeed($value) - the speed of the animated GIF.
- Default: 1
- Minimum: 0.2
- Maximum: 10
-
setFramesPerSecond($value) - the number of frames per second that should be captured from the video.
- Default: 10
- Minimum: 0.2
- Maximum: 60
-
setRepeat($value) - number of times to loop the animated GIF.
- Default: 0
- Loop Continuously: 0
- Never Loop: -1
-
setReverse($value) - if true the frames of the animated GIF are reversed
-
setCustomWaterMarkId($value) - add a custom watermark or special watermark to the animated GIF
-
setQuality($value) - the quality of the returned image, which has a default compression of 85%.
- Reducing the quality will reduce the filesize and reduce download times.
- Default: -1
- Minimum: -1
- Maximum: 100
-
setCountry($value) - the country the animated GIF should be taken from.
- Default: The current fastest location
- Options: "SG", "UK", "US"
-
setExportURL($value) - the export URL that specifies where the capture should be exported too
-
setEncryptionKey($value) - the if a base 64 encoded AES encryption key is specified your capture is encrypted when it is created. It is recommended to use the create encryption key method to create the key and the decrypt methods to decrypt the encrypted capture as shown in this example.
-
setProxy($value) - the HTTP proxy details the browser software should use to use to create this capture
URLToImage($url, $options = null)
Specifies the URL that should be converted into a image screenshot.
Parameters
-
url - the URL that the screenshot should be made of
- options - a instance of the GrabzItImageOptions class that defines any special options to use when creating the screenshot.
Return Value
void
HTMLToImage($html, $options = null)
Specifies the HTML that should be converted into a image.
Parameters
-
html - the HTML to convert into a image
- options - a instance of the GrabzItImageOptions class that defines any special options to use when creating an image.
Return Value
void
FileToImage($path, $options = null)
Specifies a HTML file that should be converted into a image.
Parameters
-
path - the file path of a HTML file to convert into a image
- options - a instance of the GrabzItImageOptions class that defines any special options to use when creating an image.
Return Value
void
GrabzItImageOptions
The class represents all of the options available when creating image captures.
Public Properties
-
setCustomId($value) - custom identifier that you can pass through to the screenshot webservice. This will be returned with the callback URL you have specified.
-
setBrowserWidth($value) - the width of the browser in pixels
- Default: 1366
- Maximum: 10000
-
setBrowserHeight($value) - the height of the browser in pixels
- Default: 1170
- Maximum: 10000
- Full Length: -1 (passing -1 means that a sceenshot of the whole web page is taken)
-
setWidth($value) - the width of the resulting thumbnail in pixels
- Default: if both the output width and output height are not specified or 0 then the output width and height will match the final image width and height, if the output height is specified the output width will be proportional to the output height
- Maximum: Maximum width for package
- Full Width: -1 (passing -1 means that the width of the thumbnail is not reduced)
-
setHeight($value) - the height of the resulting thumbnail in pixels
- Default: if both the output width and output height are not specified or 0 then the output width and height will match the final image width and height, if the output width is specified the output height will be proportional to the output width
- Maximum: Maximum height for package
- Full Height: -1 (passing -1 means that the height of the thumbnail is not reduced)
-
setFormat($value) - the format the screenshot should be in.
- Default: "jpg"
- Options: "bmp8", "bmp16", "bmp24", "bmp", "tiff", "webp", "jpg", "png"
-
setDelay($value) - the number of milliseconds to wait before taking the screenshot
- Default: 0
- Maximum: 30000
-
setClickElement($value) - this specifies the HTML element, using a CSS selector to click. Remember a delay may also be required to view the effects of the click
-
setTargetElement($value) - the CSS selector of the only HTML element on the target web page that is to be turned into a screenshot, all other parts of the web page are ignored. If there are multiple matching HTML elements the first one is chosen
-
setHideElement($value) - the CSS selectors of the one or more HTML elements in the web page to hide, to specify multiple HTML elements to hide seperate each selector with a comma
-
setWaitForElement($value) - the CSS selectors of the HTML element in the web page that must be visible before the capture is performed
-
setRequestAs($value) - the type of user agent you wish to use
- Default: 0
-
Options:
- 0 = indicates the user agent of a standard browser should be used
- 1 = indicates the user agent of a mobile browser should be used
- 2 = indicates the user agent of a search engine should be used
-
setCustomWaterMarkId($value) - add a custom watermark or special watermark to the image
-
setQuality($value) - the quality of the returned image. This currently only effects JPG and WEBP images, which have a default compression of 90%.
- Reducing the quality will reduce the filesize and reduce download times.
- Default: -1
- Minimum: -1
- Maximum: 100
-
setTransparent($value) - if true the image capture should be transparent. This is only compatible with png and tiff images.
-
setHD($value) - if true the image capture will be in high definition this doubles the size of the image dimensions.
-
setCountry($value) - the country the screenshot should be taken from.
- Default: The current fastest location
- Options: "SG", "UK", "US"
-
setExportURL($value) - the export URL that specifies where the capture should be exported too
-
setEncryptionKey($value) - the if a base 64 encoded AES encryption key is specified your capture is encrypted when it is created. It is recommended to use the create encryption key method to create the key and the decrypt methods to decrypt the encrypted capture as shown in this example.
-
setNoAds($value) - if true adverts should be automatically hidden.
-
setNoCookieNotifications($value) - if true all commonly found cookie notifications should be automatically hidden.
-
setAddress($value) - the URL to execute the HTML code in. Can be useful if the HTML being converted uses relative URL's for resources such as CSS and images.
-
setProxy($value) - the HTTP proxy details the browser software should use to use to create this capture
Public Methods
-
AddPostParameter($name, $value) - defines a HTTP Post parameter and optionally value, this method can be called multiple times to add multiple parameters. Using this method will force GrabzIt to perform a HTTP post.
- name - the name of the HTTP Post parameter
- value - the value of the HTTP Post parameter
URLToVideo($url, $options = null)
Specifies the URL that should be converted into a video.
Parameters
-
url - the URL that the video should be captured from
-
options - a instance of the VideoOptions class that defines any special options to use when creating the video.
Return Value
void
HTMLToVideo($html, $options = null)
Specifies the HTML that the video should be captured from.
Parameters
-
html - the HTML to convert into a video
- options - a instance of the VideoOptions class that defines any special options to use when creating the video.
Return Value
void
FileToVideo($path, $options = null)
Specifies a HTML file that should be converted into a video.
Parameters
-
path - the file path of a HTML file to convert into a video
-
options - a instance of the VideoOptions class that defines any special options to use when creating the video.
Return Value
void
GrabzItVideoOptions
The class represents all of the options available when creating a video of a webpage.
Public Properties
-
setCustomId($value) - custom identifier that you can pass through to the video webservice. This will be returned with the callback URL you have specified.
-
setCustomWaterMarkId($value) - add a custom watermark or special watermark to the video
-
setBrowserWidth($value) - the width of the browser in pixels
- Default: 1366
- Maximum: 10000
-
setBrowserHeight($value) - the height of the browser in pixels
- Default: 1170
- Maximum: 10000
-
setWidth($value) - the width of the resulting video in pixels
- Default: if not set it will match the browser width
- Maximum: Maximum width for package
-
setHeight($value) - the height of the resulting video in pixels
- Default: if not set it will match the browser height
- Maximum: Maximum height for package
-
setStart($value) - the number of milliseconds to wait before creating the video
- Default: 0
- Maximum: 30000
-
setClickElement($value) - this specifies the HTML element, using a CSS selector to click. Remember a delay may also be required to view the effects of the click
-
setWaitForElement($value) - the CSS selectors of the HTML element in the web page that must be visible before the video is rendered
-
setRequestAs($value) - the type of user agent you wish to use
- Default: 0
-
Options:
- 0 = indicates the user agent of a standard browser should be used
- 1 = indicates the user agent of a mobile browser should be used
- 2 = indicates the user agent of a search engine should be used
-
setCountry($value) - the country the screenshot should be taken from.
- Default: The current fastest location
- Options: "SG", "UK", "US"
-
setExportURL($value) - the export URL that specifies where the capture should be exported too
-
setEncryptionKey($value) - the if a base 64 encoded AES encryption key is specified your capture is encrypted when it is created. It is recommended to use the create encryption key method to create the key and the decrypt methods to decrypt the encrypted capture as shown in this example.
-
setNoAds($value) - if true adverts should be automatically hidden.
-
setNoCookieNotifications($value) - if true all commonly found cookie notifications should be automatically hidden.
-
setAddress($value) - the URL to execute the HTML code in. Can be useful if the HTML being converted uses relative URL's for resources such as CSS and images.
-
setProxy($value) - the HTTP proxy details the browser software should use to use to create this capture
-
setFramesPerSecond($value) - the number of frames per second (or screenshots per second) that that should be used when creating the video.
- Default: 10
- Minimum: 0.2
- Maximum: 20
-
setDuration($value) - the length in seconds of the video, this will be how long the web page is captured for.
- Default: 10
- Minimum: 1
- Maximum: 60
Public Methods
-
AddPostParameter($name, $value) - defines a HTTP Post parameter and optionally value, this method can be called multiple times to add multiple parameters. Using this method will force GrabzIt to perform a HTTP post.
- name - the name of the HTTP Post parameter
- value - the value of the HTTP Post parameter
URLToRenderedHTML($url, $options = null)
Specifies the URL that should be converted into rendered HTML.
Parameters
-
url - the URL that the rendered HTML should be made of
- options - a instance of the GrabzItHTMLOptions class that defines any special options to use when creating the rendered HTML.
Return Value
void
HTMLToRenderedHTML($html, $options = null)
Specifies the HTML that should be converted into rendered HTML.
Parameters
-
html - the HTML to convert into rendered HTML
- options - a instance of the GrabzItHTMLOptions class that defines any special options to use when creating rendered HTML.
Return Value
void
FileToRenderedHTML($path, $options = null)
Specifies a HTML file that should be converted into rendered HTML.
Parameters
-
path - the file path of a HTML file to convert into rendered HTML
- options - a instance of the GrabzItHTMLOptions class that defines any special options to use when creating rendered HTML.
Return Value
void
GrabzItHTMLOptions
The class represents all of the options available when creating rendered HTML captures.
Public Properties
-
setCustomId($value) - custom identifier that you can pass through to the webservice. This will be returned with the callback URL you have specified.
-
setBrowserWidth($value) - the width of the browser in pixels
- Default: 1366
- Maximum: 10000
-
setBrowserHeight($value) - the height of the browser in pixels
- Default: 1170
- Maximum: 10000
-
setDelay($value) - the number of milliseconds to wait before taking the capture
- Default: 0
- Maximum: 30000
-
setWaitForElement($value) - the CSS selectors of the HTML element in the web page that must be visible before the capture is performed
-
setRequestAs($value) - the type of user agent you wish to use
- Default: 0
-
Options:
- 0 = indicates the user agent of a standard browser should be used
- 1 = indicates the user agent of a mobile browser should be used
- 2 = indicates the user agent of a search engine should be used
-
setCountry($value) - the country the screenshot should be taken from.
- Default: The current fastest location
- Options: "SG", "UK", "US"
-
setExportURL($value) - the export URL that specifies where the capture should be exported too
-
setEncryptionKey($value) - the if a base 64 encoded AES encryption key is specified your capture is encrypted when it is created. It is recommended to use the create encryption key method to create the key and the decrypt methods to decrypt the encrypted capture as shown in this example.
-
setNoAds($value) - if true adverts should be automatically hidden.
-
setNoCookieNotifications($value) - if true all commonly found cookie notifications should be automatically hidden.
-
setAddress($value) - the URL to execute the HTML code in. Can be useful if the HTML being converted uses relative URL's for resources such as CSS and images.
-
setProxy($value) - the HTTP proxy details the browser software should use to use to create this capture
Public Methods
-
AddPostParameter($name, $value) - defines a HTTP Post parameter and optionally value, this method can be called multiple times to add multiple parameters. Using this method will force GrabzIt to perform a HTTP post.
- name - the name of the HTTP Post parameter
- value - the value of the HTTP Post parameter
URLToPDF($url, $options = null)
Specifies the URL that should be converted into a PDF.
Parameters
-
url - the URL that the should be converted into a PDF
- options - a instance of the GrabzItPDFOptions class that defines any special options to use when creating a PDF.
Return Value
void
HTMLToPDF($html, $options = null)
Specifies the HTML that should be converted into a PDF.
Parameters
-
html - the HTML to convert into a PDF
- options - a instance of the GrabzItPDFOptions class that defines any special options to use when creating a PDF.
Return Value
void
FileToPDF($path, $options = null)
Specifies a HTML file that should be converted into a PDF.
Parameters
-
path - the file path of a HTML file to convert into a PDF
- options - a instance of the GrabzItPDFOptions class that defines any special options to use when creating a PDF.
Return Value
void
GrabzItPDFOptions
The class represents all of the options available when creating PDF captures.
Public Properties
-
setCustomId($value) - a custom identifier that you can pass through to the webservice. This will be returned with the callback URL you have specified.
-
setIncludeBackground($value) - if true the background of the web page should be included in the screenshot
-
setPageSize($value) - the page size of the PDF
- Default: "A4"
- Options: "A3", "A4", "A5", "A6", "B3", "B4", "B5", "B6", "Legal", "Letter"
-
setOrientation($value) - the orientation of the PDF document
- Default: "Portrait"
- Options: "Portrait", "Landscape"
-
setCSSMediaType($value) - the CSS Media Type of the PDF document
- Default: "Screen"
- Options: "Screen", "Print"
-
setIncludeLinks($value) - true if links should be included in the PDF
-
setIncludeOutline($value) - true if PDF bookmarks should be included
-
setTitle($value) - provide a title to the PDF document
-
setCoverURL($value) - the URL of a web page that should be used as a cover page for the PDF
-
setMarginTop($value) - the margin in millimeters that should appear at the top of the PDF document page
-
setMarginLeft($value) - the margin in millimeters that should appear at the left of the PDF document page
-
setMarginBottom($value) - the margin in millimeters that should appear at the bottom of the PDF document page
-
setMarginRight($value) - the margin in millimeters that should appear at the right of the PDF document
-
setBrowserWidth($value) - the width of the browser in pixels
- Default: 1366
- Maximum: 10000
- Auto Width: -1 (passing -1 means that the width of the browser matches the width of the PDF document)
-
setPageWidth($value) - the custom width of the resulting PDF in mm
-
setPageHeight($value) - the custom height of the resulting PDF in mm
- Default: page size height
- Minimum: 15
- Full Length: -1 (passing -1 means that the page height is equal to the web page)
-
setDelay($value) - the number of milliseconds to wait before taking the screenshot
- Default: 0
- Maximum: 30000
-
setRequestAs($value) - the type of user agent you wish to use
- Default: 0
-
Options:
- 0 = indicates the user agent of a standard browser should be used
- 1 = indicates the user agent of a mobile browser should be used
- 2 = indicates the user agent of a search engine should be used
-
setTemplateId($value) - add a template ID that specifies the header and footer of the PDF document
-
setClickElement($value) - this specifies the HTML element, using a CSS selector to click. Remember a delay may also be required to view the effects of the click
-
setTargetElement($value) - the CSS selector of the only HTML element on the target web page that is to be turned into a PDF, all other parts of the web page are ignored. If there are multiple matching HTML elements the first one is chosen
-
setHideElement($value) - the CSS selectors of the one or more HTML elements in the web page to hide, to specify multiple HTML elements to hide seperate each selector with a comma
-
setWaitForElement($value) - the CSS selectors of the HTML element in the web page that must be visible before the capture is performed
-
setCustomWaterMarkId($value) - add a custom watermark or special watermark to each page of the PDF document
-
setQuality($value) - the quality of the returned PDF. The default uses the recommended quality for a PDF.
- Reducing the quality will reduce the filesize and reduce download times.
- Default: -1
- Minimum: -1
- Maximum: 100
-
setCountry($value) - the country the screenshot should be taken from.
- Default: The current fastest location
- Options: "SG", "UK", "US"
-
setExportURL($value) - the export URL that specifies where the capture should be exported too
-
setEncryptionKey($value) - the if a base 64 encoded AES encryption key is specified your capture is encrypted when it is created. It is recommended to use the create encryption key method to create the key and the decrypt methods to decrypt the encrypted capture as shown in this example.
-
setNoAds($value) - if true adverts should be automatically hidden.
-
setNoCookieNotifications($value) - if true all commonly found cookie notifications should be automatically hidden.
-
setAddress($value) - the URL to execute the HTML code in. Can be useful if the HTML being converted uses relative URL's for resources such as CSS and images.
-
setProxy($value) - the HTTP proxy details the browser software should use to use to create this capture
-
setMergeId($value) - the ID of a capture that should be merged at the beginning of the new PDF document
-
setPassword($value) - the password to protect the PDF document with
Public Methods
-
AddPostParameter($name, $value) - defines a HTTP Post parameter and optionally value, this method can be called multiple times to add multiple parameters. Using this method will force GrabzIt to perform a HTTP post.
- name - the name of the HTTP Post parameter
- value - the value of the HTTP Post parameter
-
AddTemplateParameter($name, $value) - define a custom template parameter and value, this method can be called multiple times to add multiple parameters.
- name - the name of the template parameter
- value - the value of the template parameter
URLToDOCX($url, $options = null)
Specifies the URL that should be converted into a DOCX.
Parameters
-
url - the URL that the should be converted into a DOCX
- options - a instance of the GrabzItDOCXOptions class that defines any special options to use when creating a DOCX.
Return Value
void
HTMLToDOCX($html, $options = null)
Specifies the HTML that should be converted into a DOCX.
Parameters
-
html - the HTML to convert into a DOCX
- options - a instance of the GrabzItDOCXOptions class that defines any special options to use when creating a DOCX.
Return Value
void
FileToDOCX($path, $options = null)
Specifies a HTML file that should be converted into a DOCX.
Parameters
-
path - the file path of a HTML file to convert into a DOCX
- options - a instance of the GrabzItDOCXOptions class that defines any special options to use when creating a DOCX.
Return Value
void
GrabzItDOCXOptions
The class represents all of the options available when creating DOCX captures.
Public Properties
-
setCustomId($value) - a custom identifier that you can pass through to the webservice. This will be returned with the callback URL you have specified.
-
setIncludeBackground($value) - if true the background images of the web page should be included in the DOCX
-
setPageSize($value) - the page size of the DOCX
- Default: "A4"
- Options: "A3", "A4", "A5", "A6", "B3", "B4", "B5", "B6", "Legal", "Letter"
-
setOrientation($value) - the orientation of the DOCX document
- Default: "Portrait"
- Options: "Portrait", "Landscape"
-
setIncludeLinks($value) - true if links should be included in the DOCX
-
setIncludeImages($value) - true if the images of the web page should be included in the DOCX
-
setTitle($value) - provide a title to the DOCX document
-
setMarginTop($value) - the margin in millimeters that should appear at the top of the DOCX document page
-
setMarginLeft($value) - the margin in millimeters that should appear at the left of the DOCX document page
-
setMarginBottom($value) - the margin in millimeters that should appear at the bottom of the DOCX document page
-
setMarginRight($value) - the margin in millimeters that should appear at the right of the DOCX document
-
setBrowserWidth($value) - the width of the browser in pixels
- Default: 1366
- Maximum: 10000
- Auto Width: -1 (passing -1 means that the width of the browser matches the width of the DOCX document)
-
setPageWidth($value) - the custom width of the resulting DOCX in mm
-
setPageHeight($value) - the custom height of the resulting DOCX in mm
-
setDelay($value) - the number of milliseconds to wait before taking the screenshot
- Default: 0
- Maximum: 30000
-
setRequestAs($value) - the type of user agent you wish to use
- Default: 0
-
Options:
- 0 = indicates the user agent of a standard browser should be used
- 1 = indicates the user agent of a mobile browser should be used
- 2 = indicates the user agent of a search engine should be used
-
setTemplateId($value) - add a template ID that specifies the header and footer of the DOCX document
-
setClickElement($value) - this specifies the HTML element, using a CSS selector to click. Remember a delay may also be required to view the effects of the click
-
setTargetElement($value) - the CSS selector of the only HTML element on the target web page that is to be turned into a DOCX, all other parts of the web page are ignored. If there are multiple matching HTML elements the first one is chosen
-
setHideElement($value) - the CSS selectors of the one or more HTML elements in the web page to hide, to specify multiple HTML elements to hide seperate each selector with a comma
-
setWaitForElement($value) - the CSS selectors of the HTML element in the web page that must be visible before the capture is performed
-
setQuality($value) - the quality of the returned DOCX. The default uses the recommended quality for a DOCX.
- Reducing the quality will reduce the filesize and reduce download times.
- Default: -1
- Minimum: -1
- Maximum: 100
-
setCountry($value) - the country the screenshot should be taken from.
- Default: The current fastest location
- Options: "SG", "UK", "US"
-
setExportURL($value) - the export URL that specifies where the capture should be exported too
-
setEncryptionKey($value) - the if a base 64 encoded AES encryption key is specified your capture is encrypted when it is created. It is recommended to use the create encryption key method to create the key and the decrypt methods to decrypt the encrypted capture as shown in this example.
-
setNoAds($value) - if true adverts should be automatically hidden.
-
setNoCookieNotifications($value) - if true all commonly found cookie notifications should be automatically hidden.
-
setAddress($value) - the URL to execute the HTML code in. Can be useful if the HTML being converted uses relative URL's for resources such as CSS and images.
-
setProxy($value) - the HTTP proxy details the browser software should use to use to create this capture
-
setMergeId($value) - the ID of a capture that should be merged at the beginning of the new DOCX document
-
setPassword($value) - the password to protect the DOCX document with
Public Methods
-
AddPostParameter($name, $value) - defines a HTTP Post parameter and optionally value, this method can be called multiple times to add multiple parameters. Using this method will force GrabzIt to perform a HTTP post.
- name - the name of the HTTP Post parameter
- value - the value of the HTTP Post parameter
-
AddTemplateParameter($name, $value) - define a custom template parameter and value, this method can be called multiple times to add multiple parameters.
- name - the name of the template parameter
- value - the value of the template parameter
URLToTable($url, $options = null)
Specifies the URL that the HTML tables should be extracted from.
Parameters
-
url - the URL to extract HTML tables from
- options - a instance of the GrabzItTableOptions class that defines any special options to use when converting the HTML table.
Return Value
void
HTMLToTable($html, $options = null)
Specifies the HTML that the HTML tables should be extracted from.
Parameters
-
html - the HTML to extract HTML tables from.
- options - a instance of the GrabzItTableOptions class that defines any special options to use when converting the HTML table.
Return Value
void
FileToTable($path, $options = null)
Specifies a HTML file that the HTML tables should be extracted from.
Parameters
-
path - the file path of a HTML file to extract HTML tables from.
- options - a instance of the GrabzItTableOptions class that defines any special options to use when converting the HTML table.
Return Value
void
GrabzItTableOptions
The class represents all of the options available when converting HTML tables to CSV, XLSX or JSON.
Public Properties
-
setCustomId($value) - a custom identifier that you can pass through to the webservice. This will be returned with the callback URL you have specified
-
setTableNumberToInclude($value) - the index of the table to be converted, were all tables in a web page are ordered from the top of the web page to bottom
-
setFormat($value) - the format the table should be in
- Default: "csv"
- Options: "csv", "json", "xlsx"
-
setIncludeHeaderNames($value) - if true header names will be included in the table
-
setIncludeAllTables($value) - if true all table on the web page will be extracted with each table appearing in a seperate spreadsheet sheet. Only available with the XLSX format
-
setClickElement($value) - this specifies the HTML element, using a CSS selector to click. Remember a delay may also be required to view the effects of the click
-
setTargetElement($value) - the id of the only HTML element in the web page that should be used to extract tables from
-
setRequestAs($value) - the type of user agent you wish to use
- Default: 0
-
Options:
- 0 = indicates the user agent of a standard browser should be used
- 1 = indicates the user agent of a mobile browser should be used
- 2 = indicates the user agent of a search engine should be used
-
setCountry($value) - the country the screenshot should be taken from.
- Default: The current fastest location
- Options: "SG", "UK", "US"
-
setExportURL($value) - the export URL that specifies where the capture should be exported too
-
setEncryptionKey($value) - the if a base 64 encoded AES encryption key is specified your capture is encrypted when it is created. It is recommended to use the create encryption key method to create the key and the decrypt methods to decrypt the encrypted capture as shown in this example.
-
setAddress($value) - the URL to execute the HTML code in. Can be useful if the HTML being converted uses relative URL's for resources such as CSS and images.
-
setProxy($value) - the HTTP proxy details the browser software should use to use to create this capture
Public Methods
-
AddPostParameter($name, $value) - defines a HTTP Post parameter and optionally value, this method can be called multiple times to add multiple parameters. Using this method will force GrabzIt to perform a HTTP post.
- name - the name of the HTTP Post parameter
- value - the value of the HTTP Post parameter
Save($callBackURL = null)
Save the result asynchronously and returns a unique identifier, which can be used to get the screenshot with the GetResult method.
Parameters
-
callBackURL - the handler the GrabzIt service should call after it has completed its work
Return Value
The unique identifier of the screenshot otherwise if a error has occured an exception is thrown. This can be used to get the screenshot with the GetResult method
Warning this method is synchronous so will cause a application to pause while the result is processed
SaveTo()
Save the result synchronously to a variable containing the screenshot byte data.
Return Value
returns the byte data of the file if successful otherwise it throws an exception.
Warning this method is synchronous so will cause a application to pause while the result is processed
SaveTo($saveToFile)
Save the result synchronously to a file.
Parameters
-
saveToFile - the file path that capture will be saved to once it has been completed
Return Value
returns the true if it is successful otherwise it throws an exception.
GetStatus($id)
Get the current status of a GrabzIt screenshot.
Parameters
-
id - the unique identifier of the screenshot
Return Value
GrabzItStatus object
GetCookies($domain)
Get all the cookies that GrabzIt is using for a particular domain. This may include user defined cookies as well.
Parameters
-
domain - the domain to return cookies for
Return Value
GrabzItCookie array
SetCookie($name, $domain, $value = "", $path = "/", $httponly = false, $expires = "")
Sets a new custom cookie on GrabzIt, if the custom cookie has the same name and domain as a global cookie the global cookie is overridden.
This can be useful if a websites functionality is controlled by cookies.
Parameters
-
name - the name of the cookie to set
-
domain - the domain of the website to set the cookie for
- value - the value of the cookie
- path - the website path the cookie relates to
- httponly - if true the cookie can only be used with the HTTP protocol
-
expires - defines when the cookie expires. Pass a null value if the cookie should not expire
- Should be in the format yyyy-mm-dd hh:mm:ss
Return Value
True if the cookie is successfully set, otherwise false
DeleteCookie($name, $domain)
Delete a custom cookie or block a global cookie from being used
Parameters
-
name - the name of the cookie to delete
-
domain - the domain of the website to delete the cookie for
Return Value
True if the cookie is successfully deleted, otherwise false
GetWaterMarks()
Get your uploaded custom watermarks
Return Value
GrabzItWaterMark array
GetWaterMark($identifier)
Return your custom watermarks that matches the specified identifier
Parameters
-
identifier - the identifier of a particular custom watermark you want to view
Return Value
GrabzItWaterMark
AddWaterMark($identifier, $path, $xpos, $ypos)
Add a new custom watermark
Parameters
-
identifier - the identifier you want to give the custom watermark. It is important that this identifier is unique.
-
path - the absolute path of the watermark on your server. For instance C:/watermark/1.png
-
xpos - the horizontal position you want the screenshot to appear at
- Required
-
Options:
- Left = 0
- Center = 1
- Right = 2
-
ypos - vertical position you want the screenshot to appear at
- Required
-
Options:
- Top = 0
- Middle = 1
- Bottom = 2
Return Value
returns true if the watermark was successfully set
DeleteWaterMark($identifier)
Delete a custom watermark
Parameters
-
identifier - the identifier of the custom watermark you want to delete
Return Value
returns true if the watermark was successfully deleted
SetLocalProxy($proxyUrl)
This method enables a local proxy server to be used for all requests.
Parameters
-
proxyUrl - the URL, which can include a port if required, of the proxy. Providing a null will remove any previously set proxy
UseSSL($value)
Specifies if requests to GrabzIt's API should use SSL or not
Parameters
-
value - if true all requests to GrabzIt's API will use SSL
CreateEncryptionKey()
Create a cryptographically secure base 64 encryption key, 44 characters long.
Decrypt($data, $key)
Decrypt an encrypted capture using the provided encryption key.
Parameters
DecryptFile($path, $key)
Decrypt an encrypted capture using the provided encryption key.
Parameters
Result Classes
GrabzItCookie
Public Properties
-
Name
-
Value
-
Domain
- The domain the cookie is set for.
-
Path
- The path on the domain that this cookie applies to.
-
HttpOnly
- If this cookie is only valid when the website is viewed with the HTTP protocol.
-
Expires
- The date this cookie expires
-
Type
-
The type of cookie this is, which can be one of the following:
- Global - this is a global cookie set by GrabzIt
- Local - this is a local cookie set by you
- Overridden - a global cookie that has been overridden by you
GrabzItStatus
The class representing the current status of the screenshot.
Public Properties
-
Processing
- If true the screenshot is still being processed.
-
Cached
- If true the screenshot is has been processed and is currently cached.
-
Expired
- If true the screenshot is no longer on the GrabzIt system.
-
Message
- An error message returned by the system.
GrabzItWaterMark
This class represents the custom watermarks stored in GrabzIt
Public Properties
-
Identifier
- The identifier of the watermark
-
XPosition
-
The horizontal postion of the watermark
- Left = 0
- Center = 1
- Right = 2
-
YPosition
-
The vertical postion of the watermark
- Top = 0
- Middle = 1
- Bottom = 2
-
Format
- The format of the watermark