Dear support,
Hi there,
Thanks for your inquiry. Please note usually it happens due to opaque background of PDF document. Please set Background property of watermark/stamp to false. It will come to front and hopefully it will resolve your issue. If the issue still persists then please share your sample code here as well. So we will look into it further and provide you information accordingly.
....
....
//create text stamp
com.aspose.pdf.TextStamp textStamp = new com.aspose.pdf.TextStamp("Sample Stamp");
//set whether stamp is background
textStamp.setBackground(false);
....
Please feel free to contact us for any further assistance.
Best Regards,
Hi there,
Thanks for your feedback. Yes, you can set the opacity property of TextStamp to control the transparency. Hopefully it will help you to accomplish the task.
//create text stamp
com.aspose.pdf.TextStamp textStamp = **new** com.aspose.pdf.TextStamp("//Sample Stamp/");
//set whether stamp is background
textStamp.setBackground(**false**);
textStamp.setOpacity(.5);
...
...
Please feel free to contact us for any further assistance.
Best Regards,