Overlapping RectangleAnnotations cause opacity stacking and unreadable text

Hi Sarthak,

Thank you for your patience.

Setting the property BlendMode on your annotations to multiply will allow you to fix this issue:

annots.forEach((a) => {
    a.BlendMode = "multiply"
});

Let us know if that works for you.

Best Regards,
Mickaël.

1 Like