Home

Bytescout.Watermarking
SDK for .NET

Click to view full size screenshot
 Products  |  Download  |  Purchase  |  Support  |  Contacts  |  Testimonials |  
Bytescout.Watermarking SDK for .NET: tutorial for developers

Download Free Trial Buy Now More Information

How to batch process 2 or more photo files using Bytescout.Watermarking SDK for .NET developers

Download source code: watermarkingsdk_batch_watermarking.zip (240 KB)

Input image #1:

input image 1

Input image #1:

sample input image 2

OUTPUT:

Output image #1:

output image 1

Output image #2:

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)

Download Free Trial Buy Now More Information

Quick Start tutorials:

Tutorials (Presets):

Advanced Tutorials (using presets with advanced settings):

Products  |  Download  |  Purchase  |  Support  |  Contacts  |  Testimonials |  

ByteScout, 2003-2008. All other company and product names may be trademarks of their respective companies. Privacy Statement