CanvasRenderingContext2D
.getTransform()
method of the Canvas 2D API retrieves the current transformation matrix being applied to the context.
let storedTransform = ctx.getTransform();
None.
A
DOMMatrix
对象。
The transformation matrix is described by:
注意
: The returned object is not live, so updating it will not affect the current transformation matrix, and updating the current transformation matrix will not affect an already returned
DOMMatrix
.
In the following example, we have two
<canvas>
elements. We apply a transform to the first one's context using
CanvasRenderingContext2D.setTransform()
and draw a square on it, then retrieve the matrix from it using
getTransform()
.
We then apply the retrieved matrix directly to the second canvas context by passing the
DOMMatrix
object directly to
setTransform()
, and draw a circle on it.
<canvas width="240"></canvas> <canvas width="240"></canvas>
canvas {
border: 1px solid black;
}
const canvases = document.querySelectorAll('canvas');
const ctx1 = canvases[0].getContext('2d');
const ctx2 = canvases[1].getContext('2d');
ctx1.setTransform(1, .2, .8, 1, 0, 0);
ctx1.fillRect(25, 25, 50, 50);
let storedTransform = ctx1.getTransform();
console.log(storedTransform);
ctx2.setTransform(storedTransform);
ctx2.beginPath();
ctx2.arc(50, 50, 50, 0, 2 * Math.PI);
ctx2.fill();
| 规范 | 状态 | 注释 |
|---|---|---|
|
HTML 实时标准
The definition of 'CanvasRenderingContext2D.getTransform' in that specification. |
实时标准 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
getTransform
|
Chrome 68 | Edge 79 | Firefox 70 | IE No | Opera 55 | Safari 11 | WebView Android 68 | Chrome Android 68 | Firefox Android No | Opera Android 48 | Safari iOS 11 | Samsung Internet Android 10.0 |
完整支持
不支持
CanvasRenderingContext2D
CanvasRenderingContext2D.transform()
CanvasRenderingContext2D
addHitRegion()
arc()
arcTo()
beginPath()
bezierCurveTo()
clearHitRegions()
clearRect()
clip()
closePath()
createImageData()
createLinearGradient()
createPattern()
createRadialGradient()
drawFocusIfNeeded()
drawImage()
drawWidgetAsOnScreen()
drawWindow()
ellipse()
fill()
fillRect()
fillText()
getImageData()
getLineDash()
getTransform()
isPointInPath()
isPointInStroke()
lineTo()
measureText()
moveTo()
putImageData()
quadraticCurveTo()
rect()
removeHitRegion()
resetTransform()
restore()
rotate()
save()
scale()
scrollPathIntoView()
setLineDash()
setTransform()
stroke()
strokeRect()
strokeText()
transform()
translate()