←Select platform

AngleRipple Property

Summary
Gets or sets a value that represents the amount of angular pattern frequency.
Syntax
C#
Objective-C
C++/CLI
Python
public int AngleRipple { get; set; } 
@property (nonatomic, assign) NSInteger angleRipple; 
public: 
property int AngleRipple { 
   int get(); 
   void set (    int ); 
} 
AngleRipple # get and set (HalfTonePatternCommand) 

Property Value

Value that represents angular pattern frequency. Angular patterns only occur when either HalfTonePatternCommandType.Circle or HalfTonePatternCommandType.Ellipse is selected in the type property. This value determines how many "spokes" appear in the image.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
public void HalfTonePatternCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "sample1.cmp")); 
 
   // Prepare the command 
   HalfTonePatternCommand command = new HalfTonePatternCommand(); 
   command.Contrast = 100; 
   command.Ripple = 200; 
   command.AngleContrast = 12; 
   command.AngleRipple = 2; 
   command.AngleOffset = 4500; 
   command.BackGroundColor = new RasterColor(255, 255, 255); 
   command.ForeGroundColor = new RasterColor(255, 0, 0); 
   command.Type = HalfTonePatternCommandType.Line; 
   command.Run(image); 
 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.ImageProcessing.Core Assembly

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