Fabric.js IText Class Complete Reference Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Fabric.js is an open-source JavaScript canvas library, that provides the interactive object model built on top of the canvas element. It is also an SVG-to-canvas & canvas-to-SVG parser. The Itext class in Fabric.js means the Itext is movable and can be stretched according to requirement. It can be used to create Itext instances & also helps to fire the event with the "text:" as a prefix when observing canvas. The list of complete IText canvas class properties are given below: Members: Fabric.js IText angle PropertyFabric.js IText borderColor PropertyFabric.js IText borderDashArray PropertyFabric.js IText borderOpacityWhenMoving PropertyFabric.js IText borderScaleFactor PropertyFabric.js IText centeredRotation PropertyFabric.js IText centeredScaling PropertyFabric.js IText charSpacing PropertyFabric.js IText cornerDashArray PropertyFabric.js IText cornerSize PropertyFabric.js IText cornerStyle PropertyFabric.js IText evented PropertyFabric.js IText excludeFromExport PropertyFabric.js IText fill PropertyFabric.js IText flipX PropertyFabric.js IText flipY PropertyFabric.js IText fontFamily PropertyFabric.js IText fontSize PropertyFabric.js IText fontStyle PropertyFabric.js IText fontWeight PropertyFabric.js IText hasBorders PropertyFabric.js IText hasControls PropertyFabric.js IText hoverCursor PropertyFabric.js IText includeDefaultValues PropertyFabric.js IText inverted PropertyFabric.js IText isEditing PropertyFabric.js IText lineHeight PropertyFabric.js IText linethrough PropertyFabric.js IText lockMovementX PropertyFabric.js IText lockMovementY PropertyFabric.js IText lockRotation PropertyFabric.js IText lockScalingFlip PropertyFabric.js IText lockScalingX PropertyFabric.js IText lockScalingY PropertyFabric.js IText noScaleCache PropertyFabric.js IText objectCaching PropertyFabric.js IText opacity PropertyFabric.js IText overline PropertyFabric.js IText padding PropertyFabric.js IText paintFirst PropertyFabric.js IText perPixelTargetFind PropertyFabric.js IText scaleX PropertyFabric.js IText scaleY PropertyFabric.js IText selectable PropertyFabric.js IText selectionBackgroundColor PropertyFabric.js IText selectionColor PropertyFabric.js IText skewX PropertyFabric.js IText statefullCache PropertyFabric.js IText stroke PropertyFabric.js IText strokeDashArray PropertyFabric.js IText strokeLineCap PropertyFabric.js IText strokeLineJoin PropertyFabric.js IText strokeMiterLimit PropertyFabric.js IText strokeUniform PropertyFabric.js IText strokeWidth PropertyFabric.js IText textBackgroundColor PropertyFabric.js IText touchCornerSize PropertyFabric.js IText transparentCorners PropertyFabric.js IText type PropertyFabric.js IText underline PropertyFabric.js IText visible Property Comment More infoAdvertise with us Next Article Fabric.js Rect Class Complete Reference B bijaybhaskar Follow Improve Article Tags : JavaScript Web Technologies Similar Reads Fabric.js Image Class Complete Reference Fabric.js is an open-source JavaScript canvas library, that provides the interactive object model built on top of the canvas element. It is also an SVG-to-canvas & canvas-to-SVG parser. The canvas image is one of the classes of fabric.js that is used to create image instances. The canvas image m 2 min read Fabric.js Group Class Complete Reference Fabric.js is an open-source JavaScript canvas library, which provides the interactive object model built on top of the canvas element. It is also an SVG-to-canvas & canvas-to-SVG parser. The Group in Fabric.js is a simple way to categorize any Fabric objects into a single entity, in order to wor 2 min read Fabric.js Text Class Complete Reference Fabric.js is an open-source JavaScript canvas library, that provides the interactive object model built on top of the canvas element. It is also an SVG-to-canvas & canvas-to-SVG parser. The Text class in Fabric.js provides the text abstraction by using the fabric.Text objects, that allow working 2 min read Fabric.js Path Class Complete Reference Fabric.js is an open-source JavaScript canvas library, that provides the interactive object model built on top of the canvas element. It is also an SVG-to-canvas & canvas-to-SVG parser. The Path class in Fabric.js represents an outline of a particular shape that can be filled, stroked, and modif 2 min read Fabric.js Rect Class Complete Reference Fabric.js is an open-source JavaScript canvas library, which provides the interactive object model built on top of the canvas element. It is also an SVG-to-canvas & canvas-to-SVG parser. The canvas rectangle means the rectangle is movable and can be stretched according to requirement, along with 2 min read Fabric.js Canvas Class Complete Reference Fabric.js is an open-source JavaScript canvas library, which provides the interactive object model built on top of the canvas element. It is also an SVG-to-canvas & canvas-to-SVG parser. The Canvas in Fabric.js can be used as a wrapper for the <canvas> elements & is responsible to mana 1 min read Like