Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
Start Method
See Also 
Leadtools Namespace > RasterBufferResize Class : Start Method



oldWidth
Specifies the original width of the image.
oldHeight
Specifies the original height of the image.
newWidth
Specifies the new width for the image.
newHeight
Specifies the new height for the image.
Sets up information for the ResizeBuffer method.

Syntax

Visual Basic (Declaration) 
Public Sub Start( _
   ByVal oldWidth As Integer, _
   ByVal oldHeight As Integer, _
   ByVal newWidth As Integer, _
   ByVal newHeight As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterBufferResize
Dim oldWidth As Integer
Dim oldHeight As Integer
Dim newWidth As Integer
Dim newHeight As Integer
 
instance.Start(oldWidth, oldHeight, newWidth, newHeight)
C# 
public void Start( 
   int oldWidth,
   int oldHeight,
   int newWidth,
   int newHeight
)
C++/CLI 
public:
void Start( 
   int oldWidth,
   int oldHeight,
   int newWidth,
   int newHeight
) 

Parameters

oldWidth
Specifies the original width of the image.
oldHeight
Specifies the original height of the image.
newWidth
Specifies the new width for the image.
newHeight
Specifies the new height for the image.

Example

For an example, refer to RasterBufferResize.

Remarks

For more information, refer to Introduction to Image Processing With LEADTOOLS.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also