Can you please be more specific? Here is my code but it doesn’t seem to work
const tool = documentViewer.getTool('AnnotationCreateRubberStamp');
tool.setStandardStamps([
'/assets/images/agreed-to-automated-data-feed.svg',
]);
const stamps = await tool.getStandardStampAnnotations()
for (const stamp of stamps) {
stamp.Width = 10;
stamp.Height = 10;
}