Skip to content

Instantly share code, notes, and snippets.

@lorkel
lorkel / script.js
Last active June 4, 2024 20:07 — forked from michaelbukachi/script.js
Fabric.js Textbox resize according to specified height
// load canvas with id 'c'
const canvas = new fabric.Canvas('c');
// use canvas height as the height limit
var limit = canvas.height;
var text = new fabric.Textbox('Some very long text');
// set initial values
text.set({
top: margin,
width: canvas.width,