Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
.NET developers, rejoice! GroupDocs.Watermark for .NET 24.5 (MSI) boosts your applications with enhanced control over document security. This update unlocks the ability to effortlessly integrate custom fonts within spreadsheets, Word documents, and even diagrams.
Level up the visual impact of your spreadsheets by incorporating custom TrueType fonts with the latest version of the C# watermarking apps API. This release delivers precise configuration of the font location, enabling the creation of unique and personalized documents. The following C# code example shows how to unleash custom fonts in spreadsheets, but you can also utilize this functionality with Word documents and diagrams.
TrueType
var fontsFolder = @"c:\CustomFonts\"; using (Watermarker watermarker = new Watermarker("sample.xlsx")) { // Initialize the font to be used for watermark Font font = new Font("CustomFontName", fontsFolder, 36); // Create the watermark object TextWatermark watermark = new TextWatermark("Test watermark", font); // Set watermark properties watermark.ForegroundColor = Color.Blue; watermark.Opacity = 0.5; watermark.X = 10; watermark.Y = 10; // Add watermark watermarker.Add(watermark); watermarker.Save("result.xlsx"); }
Source*
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Watermark for .NET 24.5 Release Notes.