←Select platform

CylinderCommand Constructor(int,CylinderCommandType)

Summary
Initializes a new CylinderCommand class object with explicit parameters.
Syntax
C#
C++/CLI
Python
public: 
CylinderCommand(  
   int value, 
   CylinderCommandType type 
) 
__init__(self,value,type) # Overloaded constructor 

Parameters

value
Amount of stretching where:

  • Positive values: stretch the pixels toward the image edges depending on the type of cylinder.
  • Negative values: stretch the pixels toward the central line of the cylinder.
  • The valid range is from -100 to 100.

type
A value that indicates the cylinder shape.

Example

Run the CylinderCommand on an image.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.SpecialEffects; 
 
 
public void CylinderConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "sample5.cmp")); 
 
   // Prepare the command 
   CylinderCommand command = new CylinderCommand(100, CylinderCommandType.Vertical); 
   // Warp the image to vertical cylinder shape. 
   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.