←Select platform

HorizontalScratchCount Property

Summary
Gets or sets the number of horizontal scratch lines.
Syntax
C#
C++/CLI
Python
public int HorizontalScratchCount { get; set; } 
public: 
property int HorizontalScratchCount { 
   int get(); 
   void set (    int ); 
} 
HorizontalScratchCount # get and set (AgingCommand) 

Property Value

Number of horizontal scratch lines. This property only accepts positive values.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.SpecialEffects; 
 
 
public void AgingCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE1.CMP")); 
 
   // Prepare the command 
   AgingCommand command = new AgingCommand(); 
   command.HorizontalScratchCount = 10; 
   command.VerticalScratchCount = 2; 
   command.MaximumScratchLength = 50; 
   command.DustDensity = 2; 
   command.PitsDensity = 5; 
   command.MaximumPitSize = 6; 
   command.ScratchColor = new RasterColor(255, 255, 0); 
   command.DustColor = new RasterColor(0, 0, 0); 
   command.PitsColor = new RasterColor(0, 0, 255); 
   command.Flags = AgingCommandFlags.AddVerticalScratch | AgingCommandFlags.AddPits | AgingCommandFlags.ScratchInverse | AgingCommandFlags.PitsColor; 
 
   //Apply aging effect. 
   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"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.SpecialEffects Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.