our-medical
Version:
medical image vue component
13 lines (12 loc) • 440 B
TypeScript
import type { Types } from '@cornerstonejs/tools';
/**
* @description 计算输入字符串的外包围盒尺寸,fontSize默认为14
* @author jiannan.jiao
* @date 21/09/2023
* @export
* @param {Types.SVGDrawingHelper} svgDrawingHelper
* @param {string} text
* @param {number} [fontSize=14]
* @returns {*}
*/
export default function getTextBox(svgDrawingHelper: Types.SVGDrawingHelper, text: string, fontSize?: number): DOMRect;