diff --git a/EnvelopeGenerator.Application/Pdf/BurnPdfCommand.cs b/EnvelopeGenerator.Application/Pdf/BurnPdfCommand.cs index 86d36920..8bb3dc42 100644 --- a/EnvelopeGenerator.Application/Pdf/BurnPdfCommand.cs +++ b/EnvelopeGenerator.Application/Pdf/BurnPdfCommand.cs @@ -284,7 +284,8 @@ public class BurnPdfCommandHandler : IRequestHandler private void AddImageAnnotation(double x, double y, double width, double height, int page, string base64) { - throw new NotImplementedException(); + _manager.SelectPage(page); + _manager.AddEmbeddedImageAnnotFromBase64(base64, (float)x, (float)y, (float)width, (float)height); } private void AddImageAnnotation(Annotation pAnnotation, Dictionary pAttachments)