ByteScout Watermarking SDK - C# - Progress Indicator - ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

ByteScout Watermarking SDK – C# – Progress Indicator

  • Home
  • /
  • Articles
  • /
  • ByteScout Watermarking SDK – C# – Progress Indicator

ByteScout Watermarking SDK – C# – Progress Indicator

Program.cs

using System;
using System.IO;
using Bytescout.Watermarking;
using Bytescout.Watermarking.Presets;

namespace ProgressIndicator
{
	class Program
	{
		static void Main(string[] args)
		{
			// Create Watermarker instance
			Watermarker waterMarker = new Watermarker();

			// Initialize library
			waterMarker.InitLibrary("demo", "demo");

			// Add images to apply watermarks to
			waterMarker.AddInputFile("image1.jpg", "image1_watermarked.jpg");
			waterMarker.AddInputFile("image2.jpg", "image2_watermarked.jpg");
			waterMarker.AddInputFile("image3.jpg", "image3_watermarked.jpg");
				
			// Create new watermark
			TextFitsPage preset = new TextFitsPage();

			// Set watermark text
			preset.Text = "My Watermark (c) Me 2010";

			// Add watermark to watermarker
			waterMarker.AddWatermark(preset);

			// Add Progress event handler
			waterMarker.Progress += new ProgressEventHandler(waterMarker_Progress);

			// Apply watermarks
			waterMarker.Execute();

			Console.WriteLine();
			Console.WriteLine("Hit any key...");
			Console.ReadKey();
		}

		static void waterMarker_Progress(double percent, string status, string processedFile, ref bool abort)
		{
			string message;

			if (!String.IsNullOrEmpty(processedFile))
			{
				message = String.Format("{0}: {1}: {2:f02}%", Path.GetFileName(processedFile), status, percent);
			}
			else
			{
				message = String.Format("{0}: {1:f02}%", status, percent);
			}

			Console.WriteLine(message.PadRight(Console.WindowWidth));
		}
	}
}


  Click here to get your Free Trial version of the SDK

Tutorials:

prev
next