ByteScout Watermarking SDK - C# - Batch Watermark Multiple Images - ByteScout

ByteScout Watermarking SDK – C# – Batch Watermark Multiple Images

  • Home
  • /
  • Articles
  • /
  • ByteScout Watermarking SDK – C# – Batch Watermark Multiple Images

batch watermark multiple images in C# with ByteScout Watermarking SDK

Write code in C# to make batch watermark multiple images with this How-To tutorial

Today we will explain the steps and algorithm of implementing batch watermark multiple images and how to make it work in your application. ByteScout Watermarking SDK was made to help with batch watermark multiple images in C#. ByteScout Watermarking SDK is the library for software developers that can be used to quickly add image watermarking features into your web or desktop applications. Use ready to use presets or create your own to be applied for input PNG, JPG, BMP images. Can customize fonts, text position and rotation if required.

Fast application programming interfaces of ByteScout Watermarking SDK for C# plus the instruction and the C# code below will help you quickly learn batch watermark multiple images. In order to implement this functionality, you should copy and paste code below into your app using code editor. Then compile and run your application. This basic programming language sample code for C# will do the whole work for you in implementing batch watermark multiple images in your app.

Trial version can be obtained from our website for free. It includes this and other source code samples for C#.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
using System; using System.Diagnostics; using System.Drawing; using System.Collections.Generic; using Bytescout.Watermarking; using Bytescout.Watermarking.Presets; namespace Sample { 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("my_sample_image2.jpg", "my_sample_image2_output.jpg"); waterMarker.AddInputFile("my_sample_image3.jpg", "my_sample_image3_output.jpg"); // Create new watermark TextFitsPage preset = new TextFitsPage(); // Set watermark text preset.Text = "Bytescout Watermarking"; // Add watermark to watermarker waterMarker.AddWatermark(preset); // Apply watermarks waterMarker.Execute(); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Watermarking SDK Home Page

Explore ByteScout Watermarking SDK Documentation

Explore Samples

Sign Up for ByteScout Watermarking SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Watermarking SDK Home Page

Explore ByteScout Watermarking SDK Documentation

Explore Samples

Sign Up for ByteScout Watermarking SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next