在本教程中,我們將學習如何使用 FabricJS 查找線的中心坐標。 Line 元素是 FabricJS 中提供的基本元素之一。它用于創建直線。由于線元素在幾何上是一維的并且不包含內部,因此它們永遠不會被填充。我們可以通過創建 fabric.Line 的實例來創建線條對象,指定線條的 x 和 y 坐標并將其添加到畫布中。為了找到 Line 對象的真實中心坐標,我們使用 getCenterPoint 方法。
語法
getCenterPoint(): fabric.Point
登錄后復制
使用 getCenterPoint 方法
示例
讓我們看一個代碼示例,以查看 getCenterPoint 方法運行時記錄的輸出用過的。 getCenterPoint 方法返回對象的真實中心坐標。在本例中,記錄的輸出為 x= 110.5 和 y= 150.5,它們是中心點。
<!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 getCenterPoint method</h2> <p> You can open console from dev tools and see that the logged output contains the center points </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a Line object var line = new fabric.Line([70, 100, 150, 200], { stroke: "blue", }); // Add it to the canvas canvas.add(line); // Using the getCenterPoint method console.log( "The center point of Line object is: ", line.getCenterPoint() ); </script> </body> </html>
登錄后復制
使用getCenterPoint方法與不同的線的起始和結束坐標
示例
在此示例中,我們使用了getCenterPoint i> 方法獲取 Line 實例的起始坐標和結束坐標為 (100, 250) 和 (250, 40) 時的中心坐標。中心點是 175.5 和 145.5。
<!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 getCenterPoint method with different starting and ending coordinates of line </h2> <p> You can open console from dev tools and see that the logged output contains the center points </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a Line object var line = new fabric.Line([100, 250, 250, 40], { stroke: "blue", }); // Add it to the canvas canvas.add(line); // Using the getCenterPoint method console.log( "The center point of Line object is: ", line.getCenterPoint() ); </script> </body> </html>
登錄后復制
以上就是如何使用 FabricJS 找到 Line 對象的真實中心坐標?的詳細內容,更多請關注www.92cms.cn其它相關文章!