Function renderTxt2ImgBitmap

  • 将文本渲染为 ImageBitmap,用来创建 ImgClip

    Parameters

    • txt: string

      要渲染的文本

    • cssText: string

      应用于文本的 CSS 样式

    Returns Promise<ImageBitmap>

    Example

    new ImgClip(
    await renderTxt2ImgBitmap(
    '水印',
    `font-size:40px; color: white; text-shadow: 2px 2px 6px red;`,
    )
    )