AddMessageCommand Class (original) (raw)

Summary

Adds a message (text or file) to the image. This command is available in the Document/Medical Toolkits.

Syntax

class AddMessageCommand(RasterCommand): 

Example

Run the AddMessageCommand on an image.

using Leadtools; using Leadtools.Codecs; using Leadtools.ImageProcessing.Effects; public void AddMessageCommandExample() { // Load an image RasterCodecs codecs = new RasterCodecs(); codecs.ThrowExceptionsOnInvalidImages = true; RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE1.CMP")); // Prepare the command AddMessageCommand command = new AddMessageCommand(); command.Message = "LEAD Technologies, Inc."; // Add the above message to image in the default position and with the default password. command.Run(image); codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24); } static class LEAD_VARS { public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; }