Home > Web Front-end > JS Tutorial > body text

How to move the baseline of a single character in text using FabricJS?

PHPz
Release: 2023-09-01 17:05:03
forward
1337 people have browsed it

如何使用 FabricJS 移动文本中单个字符的基线?

In this tutorial, we will learn how to move the baseline of a single character in text using FabricJS. We can display text on the canvas by adding an instance of Fabric.Text. Not only does it allow us to move, scale and change the dimensions of text, but it also provides additional features such as text alignment, text decoration, line height, which are available through the properties textAlign, underline and lineHeight respectively. Likewise, we can also use the deltaY property to move the baseline of a single character.

grammar

new fabric.Text(text: String , { styles: { deltaY: Number}:Object }: Object)
Copy after login

parameter

  • text - This parameter accepts a String, which is the text string we want to display.

  • Options (optional) - This parameter is an object that provides additional customization to our text. Use this parameter to change the color, cursor, border width, and many other properties associated with the object whose style is a property.

Option key

  • styles - This property accepts an Object value which allows us to add styles to individual characters.

  • deltaY - This property accepts a Number value that allows us to move only the baseline of the style.

Example 1

Only pass styles attribute as key

In this example we can see how to add individual styles to characters using the styles attribute. As we can see in this example, only the 0th character has a fontSize of 55, a fontWeight of bold, and a fontStyle of "oblique". The first-level attribute is the line number, and the second-level attribute is the character symbol. Here we use 0 to represent the first line and first character.

<!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 styles property as key</h2>
   <p>You can see that the first character looks different now</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 text object
      var text = new fabric.Text("Add sample text here.", {
         width: 300,
         left: 50,
         top: 70,
         fill: "green",
         styles: {
            0: {
               0: {
                  fontSize: 55,
                  fontWeight: "bold",
                  fontStyle: "oblique",
               }
            }
         }
      });

      // Add it to the canvas
      canvas.add(text);
   </script>
</body>
</html>
Copy after login

Example 2

Pass the styles attribute as key along with the deltaY attribute

In this example, we will see how to use the deltaY property to add different baselines to characters. In this case, the second number in the first line (the first index) has a different baseline from its adjacent character because deltaY is specified.

<!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 styles property as key along with deltaY property</h2>
   <p> You can see that the second number in the first line has a different baseline </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 text object
      var text = new fabric.Text("Add sample text here. H2O", {
         width: 300,
         left: 50,
         top: 70,
         fill: "green",
         styles: {
            1: {
               0: {
                  fontSize: 55,
                  fontWeight: "bold",
                  fill: "red",
               },
               1: {
                  deltaY: 15,
                  fill: "blue",
               },
               2: {
                  fontSize: 55,
                  fontWeight: "bold",
                  fill: "red",
               },
            },
         },
      });

      // Add it to the canvas
      canvas.add(text);
   </script>
</body>
</html>
Copy after login

The above is the detailed content of How to move the baseline of a single character in text using FabricJS?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!