Watermarking SDK for Programmers - Page 17 of 17 - 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!

Watermarking SDK

  • Home
  • /
  • Watermarking SDK
How to batch process 2 or more photo files using Bytescout.Watermarking SDK for .NET developersYou can also use EXIF macros to watermark images with their extended information. See this sample to view tutorialDownload 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 = [...]
How to customize "Annotation" watermark preset settings while using Bytescout.Watermarking SDK for .NET developers Download source code: watermarkingsdk_annotation_preset_advanced.zip (240 KB)Input image:Output image: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");// Set input file name string inputFilePath = "my_sample_image.jpg"; // Set output file title string outputFilePath = "my_sample_output.jpg";// Add image to [...]
How to use "Annotation" watermark preset to watermark a photo using Bytescout.Watermarking SDK for .NET developersYou can also use EXIF macros to watermark images with their extended information. See this sample to view tutorialDownload source code: watermarkingsdk_annotation_preset.zip (240 KB)Input image:Output image: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");// [...]
100% .NET SDK that adds functionality to watermark image files (JPG, PNG, GIF, TIFF) with text, text annotations, and logo pictures to your .NET desktop or Web application. Watermarking SDK Key Benefits Royalty-free distribution along with your product/application; Made with 100% C# code for .NET (optional full source code licensing is available); Fully Mono .NET Framework compatible; built-in set of ready-to-use customizable presets: Simple Text, Text Annotation, Logo Image, Logo With Text, Text Fits Page, [...]
Tutorial: how to add watermark to a picture using built-in .NET functionality Looking for a component to add watermarks based on ready-to-use presets? Check Bytescout Watermarking SDK for .NET to add more attractive watermarks with ready-to-use customizable presets This tutorial demonstrates how to add a red text (watermark) to a photo file using .NET built-in functionality without any 3rd party components and libraries (like our Watermarking SDK) in Visual Basic.NET Download source code for this [...]
Tutorial: how to add watermark to a picture using built-in .NET functionality     Looking for a component to add watermarks based on ready-to-use presets? Check Bytescout Watermarking SDK for .NET to add more attractive watermarks with ready-to-use customizable presets This tutorial demonstrates how to add a red text (watermark) to the photo file using .NET built-in functionality without any 3rd party components and libraries (like our Watermarking SDK) in Visual C# application Download source [...]
Tutorial: how to add watermark to a picture using built-in .NET functionality Looking for a component to add watermarks based on ready-to-use presets? Check Bytescout Watermarking SDK for .NET to add more attractive watermarks with ready-to-use customizable presets This tutorial demonstrates how to add a red text (watermark) to the photo file using .NET built-in functionality without any 3rd party components and libraries (like our Watermarking SDK) in ASP.NET web-application Download source code for this [...]
This sample shows the source code on how to convert SWF flash movie into AVI video and set audiotrack for output video using existing WAV or MP3 file. The SDK provides the .ExternalAudioTrackFromFileName property. Set this property to existing WAV or MP3 filename (full path to the file) and the SDK will use this audio file as audiotrack for the output video file. Visual Basic .NET :