←Select platform

FunctionalLightCommandFlags Enumeration

Summary

Enumeration used to determine which function will be applied to the image, FreeHandLight, Free Light, or Trigonometry Light.

Syntax

C#
VB
WinRT C#
C++
[FlagsAttribute()] 
public enum FunctionalLightCommandFlags 
  
<FlagsAttribute()> 
Public Enum FunctionalLightCommandFlags  
   Inherits System.Enum 
   Implements System.IComparable, System.IConvertible, System.IFormattable  
[FlagsAttribute()] 
public enum FunctionalLightCommandFlags : System.IComparable, System.IConvertible, System.IFormattable   
Leadtools.ImageProcessing.SpecialEffects.FunctionalLightCommandFlags = function() { }; 
Leadtools.ImageProcessing.SpecialEffects.FunctionalLightCommandFlags.prototype = { 
 
  None = 0x00000000, 
    LinearInner = 0x00000001, 
    LinearOuter = 0x00000002, 
    QuadraticInner = 0x00000004, 
    QuadraticOuter = 0x00000008, 
    Unidirection = 0x00000010, 
    Circles = 0x00000020, 
    Addition = 0x00000040, 
    Multiply = 0x00000080, 
    LinearQuadratic = 0x00001000, 
    Trigonometry = 0x00002000, 
    Freehand = 0x00004000, 
     
 }; 
[FlagsAttribute()] 
public enum class FunctionalLightCommandFlags : public System.Enum, System.IComparable, System.IConvertible, System.IFormattable   

Members

ValueMemberDescription
0x00000000NoneNo Flags selected.
0x00000001LinearInnerThe light will be concentrated at the center and will decrease outwards. The center can be found in the Origin property or the origin parameter. This flag is valid only if LinearQuadratic is also set.
0x00000002LinearOuterThe light will be concentrated at the far points from the center and will decrease inwards towards the center. The center can be found in the Origin property or the origin parameter. This flag is valid only if LinearQuadratic is also set.
0x00000004QuadraticInnerThe light will be concentrated at the center and will decrease outwards. The center can be found in the Origin property or the origin parameter. This flag is valid only if LinearQuadratic is also set.
0x00000008QuadraticOuterThe light will be concentrated at the far points from the center and will decrease inwards towards the center. The center can be found in the Origin property or the origin parameter. This flag is valid only if LinearQuadratic is also set.
0x00000010UnidirectionA sine or cosine function will generate the light as lines.
This flag is valid only if Trigonometry is also set. The lines are parallel and have no center. The Angle property of the FunctionalLightCommand class or the angle parameter of the Constructor determines the angle formed by these lines with the X axis.
0x00000020CirclesSine or cosine function will generate the light as circles around the center. The center can be found in the Origin property, or the origin parameter of the Constructor. This flag is valid only if Trigonometry is also set.
0x00000040AdditionThe amplitude values are multiplied with the results of the selected function (sine, cosine, freehand). The results are then added to the pixel values of the equivalent channel. These functions as well as the real buffer values are from -1 to 1. This flag is valid only if Trigonometry or Freehand are also set.
0x00000080MultiplyMultiply the color factor specified by the RedAmplitude property of the FunctionalLightCommand class, or the redAmplitude parameter of the Constructor, with the results of the selected function (sine, cosine, freehand). The results are multiplied with every channel value. This flag is valid only if Trigonometry or Freehand are also set.
0x00001000LinearQuadraticIf this flag is set, the light will be computed according to the distance from the center, which is in the Origin property or the origin parameter in the Constructor of the FunctionalLightCommand class. The brightness increase for every pixel is proportional to the distance to the effect's center. If this flag is set, do not set Trigonometry or Freehand.
0x00002000TrigonometryIf this flag is set then the light will be generated by a sine or cosine function. If this is set, the frequency, angle and origin information are used to compute the light. If this flag is set, do not set LinearQuadratic or Freehand.
0x00004000FreehandIf this flag is set, the user will pass the light shape in the Buffer property of the FunctionalLightCommand class or the buffer parameter of the Constructor for the FunctionalLightCommand class. If this flag is set, the angle and buffer information will be used. The Angle property, or angle parameter, will determine the angle of the light lines compared to the X axis. If this flag is set, do not set LinearQuadratic or Trigonometry.
Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.SpecialEffects Assembly