←Select platform

ConvertToImage(IntPtr,long,RasterImage,int,int,int,int) Method

Summary

Converts image data in a buffer from one color conversion model to RGB\BGR, and sets the output as RasterImage.

Syntax
C#
VB
C++
public void ConvertToImage( 
   IntPtr srcBuffer, 
   long srcBufferOffset, 
   RasterImage image, 
   int width, 
   int height, 
   int inAlign, 
   int outAlign 
) 
  
Public Overloads Sub ConvertToImage( _ 
   ByVal srcBuffer As IntPtr, _ 
   ByVal srcBufferOffset As Long, _ 
   ByVal image As RasterImage, _ 
   ByVal width As Integer, _ 
   ByVal height As Integer, _ 
   ByVal inAlign As Integer, _ 
   ByVal outAlign As Integer _ 
)  
public: 
void ConvertToImage(  
   IntPtr srcBuffer, 
   int64 srcBufferOffset, 
   RasterImage^ image, 
   int width, 
   int height, 
   int inAlign, 
   int outAlign 
)  

Parameters

srcBuffer
A pointer to a buffer containing the input data.

srcBufferOffset
Offset to the first byte of the srcBuffer data buffer.

image
An RasterImage object that will hold the converted data.

width
Width of pixels to be processed.

height
Height of pixels to be processed.

inAlign
Each scanline in the input buffer is a multiple of inAlign bytes.

outAlign
Each scan line in the output buffer is a multiple of outAlign bytes.

Remarks

The active conversion method is specified in the ConversionParameters object when calling the Start method. To change the active method, use the SetParameters method. Only methods supported by the initialized converter should be specified. The conversion is done if the BGR or RGB Color Space was specified as the destination format when the Start method was called. For more information about Alignment Parameters, refer to Alignment Parameters. To convert to the Yp41 type the input image width must be multiple of 8

Example

For an example, refer to ConversionWhitePoint.WhitePoint.

Requirements

Target Platforms

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

Leadtools.ColorConversion Assembly