←Select platform

SetDataPointer Method

Summary

Sets the data pointer.

Syntax

C#
VB
Objective-C
WinRT C#
C++
public void SetDataPointer( 
   IntPtr data, 
   int size 
) 
Public Sub SetDataPointer( _ 
   ByVal data As IntPtr, _ 
   ByVal size As Integer _ 
)  
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 / macOS (((Width * BitsPerPixel) + 7) / 8)

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Core Assembly