如何使用 FabricJS 沿 Y 轴裁剪图像?
fabricjsjavascripthtml5 canvas
在本教程中,我们将学习如何使用 FabricJS 沿 y 轴裁剪图像。我们可以通过创建 fabric.Image 实例来创建 Image 对象。由于它是 FabricJS 的基本元素之一,我们还可以通过应用角度、不透明度等属性轻松地对其进行自定义。为了沿 y 轴裁剪图像,我们使用 cropY 属性。
语法
new fabric.Image( element: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | String, { cropY: Number }: Object, callback: function)
参数
element − 此参数接受 HTMLImageElement、HTMLCanvasElement、HTMLVideoElement 或 String,表示图像元素。该字符串应为 URL,并将作为图像加载。
选项(可选) − 此参数是一个对象,它为我们的对象提供额外的自定义。使用此参数原点、描边宽度和许多其他属性可以更改与图像对象相关的属性,其中 cropY 是该属性之一。
callback(可选) - 此参数是一个 函数,将在应用最终过滤器后调用。
选项键
cropY - 此属性接受一个 Number 值,该值表示沿 y 轴从原始图像大小裁剪的图像(以像素为单位)。
Image 对象的默认外观
示例
让我们看一个代码示例,了解当未使用 cropY 属性时 Image 对象如何显示。我们可以看到,y 轴方向上没有图像裁剪。
<!DOCTYPE html> <html> <head> <!-- Adding the Fabric JS Library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>Default appearance of Image object</h2> <p>You can see that there is no image crop along the y-axis</p> <canvas id="canvas"></canvas> <img src="https://www.tutorialspoint.com/images/logo.png" id="img1" style="display: none" /> <script> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化 image 图像元素 var imageElement = document.getElementById("img1"); // 初始化一个图像对象 var image = new fabric.Image(imageElement, { top: 50, left: 110, }); // 将其添加到画布 canvas.add(image); </script> </body> </html>
使用 cropY 属性
示例
在此示例中,我们使用了 cropY 属性并为其分配了数值 25。 因此,图像裁剪沿 y 轴为 25 个像素。
<!DOCTYPE html> <html> <head> <!-- Adding the Fabric JS Library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>Using the cropY property</h2> <p>You can see that there is a 25px image crop along the y-axis</p> <canvas id="canvas"></canvas> <img src="https://www.tutorialspoint.com/images/logo.png" id="img1" style="display: none" /> <script> // 启动一个canvas实例 var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // 初始化 image 图像元素 var imageElement = document.getElementById("img1"); // 初始化一个图像对象 var image = new fabric.Image(imageElement, { top: 50, left: 110, cropY: 25, }); // 将其添加到画布 canvas.add(image); </script> </body> </html>
结论
在本教程中,我们使用了两个示例来演示如何使用 FabricJS 沿 Y 轴裁剪图像。