You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportfunctiongetTextSize(text: string,size: number): Vector{constcanvas=document.createElement("canvas");constcontext=canvas.getContext("2d");if(!context){thrownewError("Failed to get canvas context");}context.font=`${size}px system-ui`;constmetrics=context.measureText(text);returnnewVector(metrics.width,size);}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: