Hi,
Thanks for your posting and using Aspose.Cells for Java
Yes, it is quite possible to add a watermark using Aspose.Cells for Java.
Please see the code below, it adds a watermark CONFIDENTIAL in a worksheet.
Please download and use the latest version: Aspose.Cells
for Java v7.2.0.6
I have also attached the output file generated by the code and the screenshot.
Java
// Add Watermark
Workbook workbook = new Workbook();
Worksheet sheet = workbook.getWorksheets().get(0);
com.aspose.cells.Shape wordart = sheet.getShapes().addTextEffect(MsoPresetTextEffect.TEXT_EFFECT_1,
“CONFIDENTIAL”, “Arial Black”, 50, false, true
, 18, 8, 1, 1, 130, 800);
MsoFillFormat wordArtFormat = wordart.getFillFormat();
wordArtFormat.setForeColor(Color.getRed());
wordArtFormat.setTransparency(0.9);
MsoLineFormat lineFormat = wordart.getLineFormat();
lineFormat.setVisible(false);
workbook.save(“F:\output.xls”);
Screenshot:
Hi,
Thank you so much for your help. I will try that.
Hi,
You are welcome and thanks for trying Aspose.Cells.
Let us know if you face any other issue, we will be glad to assist you further.