-
takeScreenshot
(options)
{Promise<Screenshot>}
- 自從:ArcGIS 適用於 JavaScript 4.10 的 API
創建當前視圖的屏幕截圖。屏幕截圖僅包括在畫布上呈現的元素(所有地理元素),但不包括覆蓋的 DOM 元素(UI、彈出窗口、測量標簽等)。默認情況下,會創建整個視圖的屏幕截圖。不同的選項允許創建不同類型的屏幕截圖,包括以不同的縱橫比、不同的分辨率進行屏幕截圖和創建縮略圖。
屏幕截圖始終在視圖的填充區域內進行(請參閱填充)。
參數:
規格:類型 說明 options Object可選的 截圖選項。
規格:format可選的 默認值:PNG生成的編碼數據 url 的格式。
可能的值:"jpg"|"png"
可選的 使用時,僅此列表中的可見層將包含在輸出中。
quality可選的 默認值: 98編碼為
jpg
時編碼圖像的質量(0 到 100)。width可選的 屏幕截圖的寬度(默認為區域寬度)。如果未指定,高度將根據屏幕截圖區域的縱橫比自動得出。
height可選的 屏幕截圖的高度(默認為區域高度)。如果未指定,寬度將根據屏幕截圖區域的縱橫比自動得出。
area可選的 指定是否截取視圖特定區域的屏幕截圖。區域坐標相對於填充視圖的原點(請參閱padding),並將被裁剪為視圖大小。默認為整個視圖(不包括填充)。
規格:x可選的 區域的 x 坐標。
y可選的 區域的 y 坐標。
width可選的 區域的寬度。
height可選的 區域的高度。
ignoreBackground可選的 默認值:錯誤的指示是否忽略 web Map的initial view properties 中設置的背景顏色。
ignorePadding可選的 默認值:錯誤的指示是否應忽略視圖填充。將此屬性設置為
true
以允許在屏幕截圖中包含填充區域。返回:
類型 說明 Promise<Screenshot> 解析後,返回一個包含編碼 dataUrl 和原始圖像數據的對象。 例子:
// Take a screenshot at the same resolution of the current view view.takeScreenshot().then(function(screenshot) { let imageElement = document.getElementById("screenshotImage"); imageElement.src = screenshot.dataUrl; });
// Create a square thumbnail from the current view let options = { width: 200, height: 200 }; view.takeScreenshot(options).then(function(screenshot) { let imageElement = document.getElementById("screenshotImage"); imageElement.src = screenshot.dataUrl; });
// Take a high resolution, square screenshot let options = { width: 2048, height: 2048 }; view.takeScreenshot(options).then(function(screenshot) { let imageElement = document.getElementById("screenshotImage"); imageElement.src = screenshot.dataUrl; });
// Takes a high-resolution screenshot for display on a HiDPI screen // The pixelRatio indicates the display has 2x the pixel density of typical screens let pixelRatio = 2; view.takeScreenshot({ width: view.width * pixelRatio, height: view.height * pixelRatio });
// Takes a high-resolution screenshot for display on a HiDPI screen // The pixelRatio is the resolution of the display capturing the image let pixelRatio = window.devicePixelRatio; view.takeScreenshot({ width: view.width * pixelRatio, height: view.height * pixelRatio });
基本信息
以下是所在類或對象的基本信息。
AMD:
require(["esri/views/MapView"], (MapView) => { /* code goes here */ });
ESM:
import MapView from "@arcgis/core/views/MapView";
類:
esri/views/MapView
自從:用於 JavaScript 4.0 的 ArcGIS API
用法說明
MapView.takeScreenshot
函數(或屬性)的定義如下:
相關用法
- JavaScript ArcGIS MapView.toScreen用法及代碼示例
- JavaScript ArcGIS MapView.tryFatalErrorRecovery用法及代碼示例
- JavaScript ArcGIS MapView.timeExtent用法及代碼示例
- JavaScript ArcGIS MapView.constraints用法及代碼示例
- JavaScript ArcGIS MapView.when用法及代碼示例
- JavaScript ArcGIS MapView.highlightOptions用法及代碼示例
- JavaScript ArcGIS MapView.extent用法及代碼示例
- JavaScript ArcGIS MapView.whenLayerView用法及代碼示例
- JavaScript ArcGIS MapView.scale用法及代碼示例
- JavaScript ArcGIS MapView.navigation用法及代碼示例
- JavaScript ArcGIS MapView.animation用法及代碼示例
- JavaScript ArcGIS MapView.widthBreakpoint用法及代碼示例
- JavaScript ArcGIS MapView.input用法及代碼示例
- JavaScript ArcGIS MapView.fatalError用法及代碼示例
- JavaScript ArcGIS MapView.hitTest用法及代碼示例
- JavaScript ArcGIS MapView.destroy用法及代碼示例
- JavaScript ArcGIS MapView.background用法及代碼示例
- JavaScript ArcGIS MapView.spatialReference用法及代碼示例
- JavaScript ArcGIS MapView.breakpoints用法及代碼示例
- JavaScript ArcGIS MapView.rotation用法及代碼示例
- JavaScript ArcGIS MapView.center用法及代碼示例
- JavaScript ArcGIS MapView.on用法及代碼示例
- JavaScript ArcGIS MapView.container用法及代碼示例
- JavaScript ArcGIS MapView.graphics用法及代碼示例
- JavaScript ArcGIS MapView.goTo用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 MapView.takeScreenshot。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。