Places the image on parallel planes along the Z-axis, and bends the planes toward the center point. This command is available in the
Raster Pro and above toolkits.
Object Model
Syntax
Example
Run the Leadtools.ImageProcessing.SpecialEffects.PlaneBendCommand on an image.
Visual Basic | Copy Code |
---|
Public Sub PlaneBendCommandExample()
Dim codecs As New RasterCodecs()
codecs.ThrowExceptionsOnInvalidImages = True
Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"))
' Prepare the command
Dim command As PlaneBendCommand = New PlaneBendCommand
command.CenterPoint = New LeadPoint(leadImage.Width \ 2, leadImage.Height \ 2)
command.ZValue = 0
command.Distance = leadImage.Height
command.PlaneOffset = leadImage.Width \ 2
command.Repeat = -1
command.PyramidAngle = 0
command.Stretch = 100
command.BendFactor = 400
command.StartBright = 0
command.EndBright = 100
command.BrightLength = 20000
command.BrightColor = New RasterColor(255, 255, 255)
command.FillColor = New RasterColor(0, 0, 0)
command.Flags = PlaneCommandFlags.Down Or PlaneCommandFlags.Up Or PlaneCommandFlags.Color
command.Run(leadImage)
codecs.Save(leadImage, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24)
End Sub
Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class |
C# | Copy Code |
---|
public void PlaneBendCommandExample()
{
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.ThrowExceptionsOnInvalidImages = true;
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"));
// Prepare the command
PlaneBendCommand command = new PlaneBendCommand();
command.CenterPoint = new LeadPoint(image.Width / 2, image.Height / 2);
command.ZValue = 0;
command.Distance = image.Height;
command.PlaneOffset = image.Width /2;
command.Repeat = -1;
command.PyramidAngle = 0;
command.Stretch = 100;
command.BendFactor = 400;
command.StartBright = 0;
command.EndBright = 100;
command.BrightLength = 20000;
command.BrightColor = new RasterColor(255, 255, 255);
command.FillColor = new RasterColor(0, 0, 0);
command.Flags = PlaneCommandFlags.Down | PlaneCommandFlags.Up | PlaneCommandFlags.Color;
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:\Users\Public\Documents\LEADTOOLS Images";
} |
Remarks
Inheritance Hierarchy
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also