Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML 画布 裁剪


clip() 方法

The clip() 方法将当前路径转换为当前裁剪区域。

当一个区域被裁剪时,未来的绘制将只在裁剪区域内可见。

The clip() 方法具有以下参数

参数 描述
fillrule 一个点是在裁剪区域内部还是外部?可能的值:nonzero|evenodd
path 用作裁剪区域的路径

让我们看一些例子

示例

首先,创建一个圆形裁剪区域。然后绘制两个矩形;只有位于裁剪区域内的部分可见

您的浏览器不支持 HTML5 画布标签。
<script>
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");

// 创建一个圆形裁剪区域
ctx.beginPath();
ctx.arc(100, 75, 70, 0, Math.PI * 2);
ctx.clip();

// 绘制两个矩形
ctx.fillStyle = "blue";
ctx.fillRect(0, 0, 300, 150);
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 90, 90);
</script>
自己尝试 »

示例

首先,创建一个三角形裁剪区域。然后绘制两个矩形;只有位于裁剪区域内的部分可见

您的浏览器不支持 HTML5 画布标签。
<script>
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");

// 创建一个三角形裁剪区域
ctx.beginPath();
ctx.moveTo(100,20);
ctx.lineTo(180,100);
ctx.lineTo(20,100);
ctx.lineTo(100,20);
ctx.clip();

// 绘制两个矩形
ctx.fillStyle = "blue";
ctx.fillRect(0, 0, 300, 150);
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 90, 90);
</script>
自己尝试 »

示例

首先,创建一个圆形裁剪区域。然后将图像绘制到画布上;同样 - 只有位于裁剪区域内的部分可见

您的浏览器不支持 HTML5 画布标签。
<script>
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");
const image = document.getElementById("scream");

image.addEventListener("load", (e) => {
  // 创建一个圆形裁剪区域
  ctx.beginPath();
  ctx.arc(110, 145, 75, 0, Math.PI * 2);
  ctx.clip();
  // 将图像绘制到画布上
  ctx.drawImage(image, 0, 0);
});
</script>
自己尝试 »

示例

首先,我们将两个矩形保存到 Path2D() 对象中,这将是裁剪区域。 "evenodd" 规则在裁剪矩形相交的地方创建了一个孔:如果我们使用默认的 "nonzero" 规则,就不会有孔

您的浏览器不支持 HTML5 画布标签。
<script>
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");

// 创建裁剪路径(两个矩形)
let r = new Path2D();
r.rect(80,10, 45,130);
r.rect(40,50, 120,50);
ctx.clip(r, "evenodd");

// 绘制一个矩形
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 300, 150);
</script>
自己尝试 »

示例

与上面的示例相同,但使用 "nonzero" 规则(不会在裁剪矩形相交的地方创建孔)

您的浏览器不支持 HTML5 画布标签。
<script>
const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");

// 创建裁剪路径(两个矩形)
let r = new Path2D();
r.rect(80,10, 45,130);
r.rect(40,50, 120,50);
ctx.clip(r, "nonzero");

// 绘制一个矩形
ctx.fillStyle = "red";
ctx.fillRect(0, 0, 300, 150);
</script>
自己尝试 »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.