bbb-recording-exporter
bbb-recording-exporter copied to clipboard
Bug: Text annotation box area is not respected
When you create a text annotation it has a box area limiting the visibility in the slide The script is not respecting the height, all the text is shown even it goes beyond the box area:
Live/playback:

Exported:

Hi! Nice catch. This is relatively easy to fix: we can nest the text inside of a new SVG element that has the width and height of the text box.
<!-- https://stackoverflow.com/a/42608084 -->
<svg>
<svg x="10" y="10" width="10" height="10">
<text x="0" y="0">Test test test</text>
</svg>
</svg>