←Select platform

Shift Property

Summary
Gets or sets the amount of color-shift in plasma color pattern.
Syntax
C#
C++/CLI
Python
public int Shift { get; set; } 
public: 
property int Shift { 
   int get(); 
   void set (    int ); 
} 
Shift # get and set (PlasmaCommand) 

Property Value

The amount of color shift in the plasma color pattern. Valid range for the 16, 48, and 64-bit images is from 0 to 65535 and for 12-bit images from 0 to 4095. Otherwise, it is from 0 to 255. A value of 0 means there is no color shift.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.SpecialEffects; 
 
 
public void PlasmaCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Image2.jpg")); 
 
   // Prepare the command 
   PlasmaCommand command = new PlasmaCommand(); 
 
   // Draw crossed plasma colors of size 10 over the current image, use Rgb1 predefined 
   // color pattern without any shifting, and blend the effect into the current image 
   // with opacity of 80% 
   command.Flags = PlasmaCommandFlags.Rgb1 | PlasmaCommandFlags.Cross; 
   command.Opacity = 80; 
   command.Size = 1000; 
   command.Shift = 0; 
   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.