Last active
April 24, 2024 16:36
Revisions
-
groupdocs-com-kb revised this gist
Apr 24, 2024 . No changes.There are no files selected for viewing
-
groupdocs-com-kb revised this gist
Apr 23, 2024 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,7 +12,7 @@ static void Main(string[] args) License lic = new License(); lic.SetLicense(@"GroupDocs.Watermark.lic"); // Specify an absolute or relative path to your JPG using (Watermarker watermarker = new Watermarker("input.jpg")) { // Specify the desired text and font for the watermark -
groupdocs-com-kb created this gist
Apr 23, 2024 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,34 @@ using GroupDocs.Watermark.Common; using GroupDocs.Watermark.Watermarks; using GroupDocs.Watermark; namespace AddTextWatermarktoJPGUsingCSharp { internal class Program { static void Main(string[] args) { // Set License to avoid the limitations of Watermark library License lic = new License(); lic.SetLicense(@"GroupDocs.Watermark.lic"); // Specify an absolute or relative path to your JPG. using (Watermarker watermarker = new Watermarker("input.jpg")) { // Specify the desired text and font for the watermark TextWatermark watermark = new TextWatermark("Watermark Text", new Font("Arial", 60, FontStyle.Bold)); // Specify font color and text opacity, rotation and alignments watermark.ForegroundColor = Color.DarkGreen; watermark.Opacity = 0.5; watermark.HorizontalAlignment = HorizontalAlignment.Center; watermark.VerticalAlignment = VerticalAlignment.Center; watermark.RotateAngle = -45; // Apply the watermark watermarker.Add(watermark); // Save the resulting JPG watermarker.Save("output.jpg"); } } } }