Can I somehow change the height of a text selection

Which product are you using?
PDF.js Express Viewer

PDF.js Express Version
8.2.0

Detailed description of issue
We have two types of annotations on the project.
The first one generated by service by analyzing the pdf, and the second one is created on UI (we use quads from textSelected event for new annotation creating). Annotations that created on UI have different sizes than those that created by the service. We want to normalize them. We want to use the same algorithm on service and UI for annotation creation to generate as similar annotation sizes as possible.

And the question:
Can I somehow change the size of text selection?

Hello, I’m Ron, an automated tech support bot :robot:

While you wait for one of our customer support representatives to get back to you, please check out some of these documentation pages:

Guides:APIs:Forums:

Hello dbezdushniak,

For the UI, you can create your own custom text Selection tool following this guide: Core Engine for JavaScript PDF Viewer | PDF.js Express SDK

This file may be of relevance in setting the quads:

For text selection outline, you can use the TextSelectionModel class to modify:
https://pdfjs.express/api/Core.Annotations.TextSelectionModel.html
and getDimensions method may also be relevant:
https://www.pdftron.com/api/web/Core.Annotations.TextSelectionModel.html#TextSelectionModel

Best Regards,
Kevin Kim
Web Development Support Engineer
PDFTron Systems, Inc.
www.pdftron.com

Kevin, thanks for the direction in solving that. It helped me