How to batch process 2 or more photo files using Bytescout.Watermarking SDK for .NET developers
You can also use EXIF macros to watermark images with their extended information. See this sample to view tutorial
Download source code: watermarkingsdk_batch_watermarking.zip (240 KB)
Input image #1:
Input image #1:
OUTPUT:
Output image #1:
Output image #2:
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”);
waterMarker.AddInputFile(“my_sample_image3.jpg”);
// Create new watermark
TextFitsPage preset = new TextFitsPage();
// Set watermark text
preset.Text = “Bytescout Watermarking”;
// Add watermark to watermarker
waterMarker.AddWatermark(preset);
// Set output directory
waterMarker.OutputOptions.OutputDirectory = “../”;
// Apply watermarks
waterMarker.Execute();
}
}
}
Download source code: watermarkingsdk_batch_watermarking.zip (240 KB)
You can also use EXIF macros to watermark images with their extended information. See this sample to view tutorial
Sorry! This product is not available.
Please click here to visit main page for the list of all available products and solutions.
Product Links: