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.
Syntax
Example
Run the PlaneBendCommand on an image.
Visual Basic |
Copy Code |
Public Sub PlaneBendCommandExample() RasterCodecs.Startup() Dim codecs As New RasterCodecs() codecs.ThrowExceptionsOnInvalidImages = True
Dim leadImage As RasterImage = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Master.jpg")
Dim command As PlaneBendCommand = New PlaneBendCommand command.CenterPoint = New System.Drawing.Point(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, LeadtoolsExamples.Common.ImagesPath.Path + "Result.jpg", RasterImageFormat.Jpeg, 24)
RasterCodecs.Shutdown() End Sub |
C# |
Copy Code |
public void PlaneBendCommandExample() { // 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 PlaneBendCommand command = new PlaneBendCommand(); command.CenterPoint = new Point(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, LeadtoolsExamples.Common.ImagesPath.Path + "Result.jpg", RasterImageFormat.Jpeg, 24); RasterCodecs.Shutdown(); } |
Remarks
Inheritance Hierarchy
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