Watermarking SDK for Programmers - Page 16 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 use "Simple Text" preset to add a watermark to a picture using Bytescout.Watermarking SDK for .NET developers in C# (or VB or ASP.NET) applicationYou can also use EXIF macros to watermark images with their extended information. See this sample to view tutorialDownload source code: watermarkingsdk_simple_text_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 [...]
This sample demonstrates how to use EXIF macros to add extended information about photo as annotation using Bytescout.Watermarking SDK for .NET EXIF macros are available for use with all presets. In this example we will use Annotation preset. Full list of supported EXIF and file information macros is available hereDownload source code: watermarkingsdk_annotation_macros.zip (170 KB)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[] [...]
How to customize "Logo Image With Text " watermark preset to change scale and location of logotype image and text while using Bytescout.Watermarking SDK for .NET developersDownload source code: watermarkingsdk_logo_image_with_text_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 = [...]
How to use "Logo Image With Text" watermark preset to add a logo with text to a photo file using Bytescout.Watermarking SDK for .NET developersDownload source code: watermarkingsdk_logo_image_with_text_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");// Set input file name string inputFilePath = "my_sample_image.jpg"; // [...]
How to use customized "Logo Image" preset to add a logo from png to a photo file using Bytescout.Watermarking SDK for .NETDownload source code: watermarkingsdk_logo_image_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 [...]
How to use "Logo Image" watermark preset to add a logo image to photo picture file using Bytescout.Watermarking SDK for .NET developersDownload source code: watermarkingsdk_logo_image_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");// Set input file name string inputFilePath = "my_sample_image.jpg"; // Set output file [...]
How to add transparent visual text watermark in Visual Basic application using Bytescout.Watermarking SDK for .NET This sample demonstrates how to add simple transparent text watermark to the image file using Bytescout.Watermarking SDK for .NET with Visual Basic.NET Input image: Output image:   Download source code: watermarkingsdk_visual_basic_net.zip (240 KB) You can also use EXIF macros to watermark images with their extended information. See this sample to view tutorial
How to add simple semitransparent visual text watermark in C# application using Bytescout.Watermarking SDK for .NETThis sample demonstrates how to add simple transparent text watermark to the image file using Bytescout.Watermarking SDK for .NET in Visual C#Download source code: watermarkingsdk_c_sharp.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 [...]
How to add transparent visual text watermark in ASP.NET web-application using Bytescout.Watermarking SDK for .NET This sample demonstrates how to add simple transparent text watermark to the image file using Bytescout.Watermarking SDK for .NET with ASP.NET Download source code: watermarkingsdk_asp_net.zip (240 KB) Input image: Output image (as seen in browser): To use Bytescout.Watermarking.SDK in ASP.NET project just do the following: 1) Run Visual Studio 2005 2) Create new "Web-Site" project using Project Wizard 3) Click [...]
Stamping images with their filenames using "FileName" watermarking preset in Bytescout.Watermarking SDK for .NET developers in C# (or VB or ASP.NET) applicationYou can also use EXIF macros to watermark images with their extended information. See this sample to view tutorialDownload source code: watermarkingsdk_filename_preset.zip (370 KB)Output image (see filename was added at the right-bottom corner):Source code: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) [...]