←Select platform

SetDataPointer Method

Summary

Sets the data pointer.

Syntax
C#
VB
Objective-C
C++
public void SetDataPointer( 
   IntPtr data, 
   int size 
) 
Public Sub SetDataPointer( _ 
   ByVal data As IntPtr, _ 
   ByVal size As Integer _ 
)  
- (void)setDataPointer:(void *)data size:(NSUInteger)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 (((Width * BitsPerPixel) + 31) >> 3)) &~3 iOS / macOS (((Width * BitsPerPixel) + 7) / 8)

Requirements

Target Platforms

Help Version 20.0.2020.4.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Core Assembly