Leadtools.ImageProcessing.SpecialEffects Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
LensFlareCommand Class
See Also  Members   Example 
Leadtools.ImageProcessing.SpecialEffects Namespace : LensFlareCommand Class



Simulates the secondary reflections caused when bright lights are facing the camera lens. The lens flare is refracted into a series of lightened circles that surround the flare. This method is available in the Raster Pro and above toolkits.

Syntax

Visual Basic (Declaration)  
Public Class LensFlareCommand 
   Inherits RasterCommand
   Implements IRasterCommand 
Visual Basic (Usage) Copy Code
Dim instance As LensFlareCommand
C#  
public class LensFlareCommand : RasterCommand, IRasterCommand  
C++/CLI  
public ref class LensFlareCommand : public RasterCommand, IRasterCommand  

Example

Run the LensFlareCommand on an image.

Visual Basic Copy Code
Public Sub LensFlareCommandExample()
   RasterCodecs.Startup()
   Dim codecs As New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

   Dim leadImage As RasterImage = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Master.jpg")

   ' Prepare the command
   Dim command As LensFlareCommand = New LensFlareCommand
   'Set the center point in the middle of the first square.
   command.CenterPoint = New Point(leadImage.Width \ 4, leadImage.Height \ 4)
   command.Brightness = 100
   command.Type = LensFlareCommandType.Type1
   command.Color = New RasterColor(100, 150, 10)
   ' Apply the lens flare effect to the image.
   command.Run(leadImage)
   codecs.Save(leadImage, LeadtoolsExamples.Common.ImagesPath.Path + "Result.jpg", RasterImageFormat.Jpeg, 24)

   RasterCodecs.Shutdown()
End Sub
C# Copy Code
public void LensFlareCommandExample() 

   // Load an image 
   RasterCodecs.Startup(); 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Master.jpg"); 
 
   // Prepare the command 
   LensFlareCommand command = new LensFlareCommand(); 
   //Set the center point in the middle of the first square. 
   command.CenterPoint = new System.Drawing.Point(image.Width / 4, image.Height /4); 
   command.Brightness = 100; 
   command.Type = LensFlareCommandType.Type1; 
   command.Color = new RasterColor(100, 150, 10); 
   // Apply the lens flare effect to the image. 
   command.Run(image); 
   codecs.Save(image, LeadtoolsExamples.Common.ImagesPath.Path + "Result.jpg", RasterImageFormat.Jpeg, 24); 
 
   RasterCodecs.Shutdown(); 
}

Remarks

  • Secondary reflections are caused when bright lights are facing the camera lens. These reflections can show up as spots or banding. The command adds this effect to the image by controlling their number, position, brightness and size of the spots or banding. Each lens type has its own spot distribution and ray thickness.
  • This command supports 12- and 16-bit grayscale and 48- and 64-bit color images. Support for 12- and 16-bit grayscale and 48- and 64-bit color images is available only in the Document/Medical toolkits.
  • This command does not support signed data images.
  • For an example, see the following figure:

  • The following figure shows the same image, after the effect has been applied:

  • This command does not support 32-bit grayscale images.
For more information, refer to Correcting Colors.

Inheritance Hierarchy

System.Object
   Leadtools.ImageProcessing.RasterCommand
      Leadtools.ImageProcessing.SpecialEffects.LensFlareCommand

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also