Error processing SSI file
LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly)

Show in webframe

SetDataPointer Method








The data pointer.
The size of the data pointer.
Sets the data pointer.
Syntax
public void SetDataPointer( 
   IntPtr data,
   int size
)
'Declaration
 
Public Sub SetDataPointer( _
   ByVal data As IntPtr, _
   ByVal size As Integer _
) 
'Usage
 
Dim instance As SearchRegistrationMarksCommandData
Dim data As IntPtr
Dim size As Integer
 
instance.SetDataPointer(data, size)
public void SetDataPointer( 
   IntPtr data,
   int size
)
- (void)setDataPointer:(void *)data size:(NSUInteger)size
 function Leadtools.ImageProcessing.Core.SearchRegistrationMarksCommandData.SetDataPointer( 
   data ,
   size 
)
public:
void SetDataPointer( 
   IntPtr data,
   int size
) 

Parameters

data
The data pointer.
size
The size of the data pointer.
Remarks
To calculate the correct size for a single row of image data: Windows/WinRT (((Width * BitsPerPixel) + 31) >> 3)) &~3 iOS/OS X (((Width * BitsPerPixel) + 7) / 8)
Requirements

Target Platforms

See Also

Reference

SearchRegistrationMarksCommandData Class
SearchRegistrationMarksCommandData Members

Error processing SSI file