@recogito/annotorious :始终在矩形下方显示注释

@recogito/annotorious : show annotation below rectangle always

我正在使用 https://github.com/recogito/annotorious 在图像上绘制注释。 我想始终显示注释文本。

下面是我正在尝试的代码。

const anno = Annotorious.init({
    image: 'test',
    locale: 'auto',
    widgets: [{ widget: 'COMMENT' }],
});
         
// This is I am trying, but, this is not that function, Is there other option or plugin ?
anno.setVisible(true);

是否有其他选项或插件?

如果你想让文字一直显示,你应该看看形状标签插件: https://github.com/recogito/recogito-client-plugins/tree/main/packages/annotorious-shape-labels

它将在注释中显示三个第一个标签,但您可以轻松调整代码以显示例如改为评论。

尝试更改绘图工具

var toolName = 'polygon';  // 'rect' or 'polygon'
anno.setDrawingTool(toolName);