FabricJS – 如何将图像对象缩放到给定高度?

fabricjsjavascripthtml5 canvas

在本教程中,我们将学习如何使用 FabricJS 将图像对象缩放到给定高度。我们可以通过创建 fabric.Image 实例来创建图像对象。由于它是 FabricJS 的基本元素之一,我们还可以通过应用角度、不透明度等属性轻松地对其进行自定义。为了将 Image 对象缩放到给定的高度,我们使用 scaleToHeight 方法。

语法

scaleToHeight(value: Number, absolute: Boolean): fabric.Object

参数

  • value − 此参数接受一个 Number,该值确定我们的 Image 对象的新高度值。

  • absolute − 此参数接受一个 Boolean 值,该值确定是否要忽略视口。

图像的默认外观对象

示例

让我们看一个代码示例,看看当不使用 scaleToHeight 方法时我们的图像对象是什么样子。在这种情况下,我们的图像对象不会在水平或垂直方向上缩放。

<!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 the Image object</h2> <p> You can see that the object has not been scaled in horizontal or vertical direction </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); // Initiating the image element var imageElement = document.getElementById("img1"); // Initiate an Image object var image = new fabric.Image(imageElement, { top: 50, left: 110, }); // 将其添加到画布 canvas.add(image); </script> </body> </html>

使用自定义值传递 scaleToHeight 方法

示例

在此示例中,我们将了解如何为 scaleToHeight 方法分配值,以将图像对象缩放到给定高度。由于我们已将值传递为 100,因此这将是图像对象的新高度。

<!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>Passing the scaleToHeight method with a custom value</h2> <p>You can see that the new height of our image object is 100</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); // Initiating the image element var imageElement = document.getElementById("img1"); // Initiate an Image object var image = new fabric.Image(imageElement, { top: 50, left: 110, }); // Using scaleToHeight method image.scaleToHeight(100, false); // 将其添加到画布 canvas.add(image); </script> </body> </html>

相关文章