let json = `
{
"annotations": [
{
"oid":0,
"type": "TEXT_POPUP",
"pageIndex": 0,
"name": "9b2",
"rect": {
"top": 10,
"bottom": 40,
"left": 10,
"right": 40
},
"opacity": 1,
"rotation": 0,
"createdAt": "D:20250617223659+01'00'",
"modifiedAt": "D:20250617223704+01'00'",
"author": "Jane Doe",
"canBePrinted": true,
"locked": false,
"contents": "Hi there!",
"fillColor": "#ff00ff",
"position": {
"x": 100,
"y": 100
},
"popupNote": {
"rect": {
"top": 10,
"bottom": 40,
"left": 10,
"right": 40
}
}
}
]
}
`
const annotData = JSON.parse(json);
await mupdf.annotation.add(annotData);
mupdf.toast.show({
type: 'notification',
content: 'Annotations added'
});