Leadtools.Converters assembly

CreateFromHtmlImageData Method

Show in webframe







The pixel width of the image data. Set this to ImageData.width. Must be a value greater than 0.
The pixel height of the image data. Set this to ImageData.height. Must be a value greater than 0.
The pixels data. Set this to ImageData.data. Must not be null.
Creates a new instance of RasterRenderBuffer with the specified values from a HTML 5 Canvas ImageData object.
Syntax
public static RasterRenderBuffer CreateFromHtmlImageData( 
   int imageDataWidth,
   int imageDataHeight,
   byte[] imageData
)
'Declaration
 
Public Shared Function CreateFromHtmlImageData( _
   ByVal imageDataWidth As Integer, _
   ByVal imageDataHeight As Integer, _
   ByVal imageData() As Byte _
) As RasterRenderBuffer
'Usage
 
Dim imageDataWidth As Integer
Dim imageDataHeight As Integer
Dim imageData() As Byte
Dim value As RasterRenderBuffer
 
value = RasterRenderBuffer.CreateFromHtmlImageData(imageDataWidth, imageDataHeight, imageData)
public static RasterRenderBuffer CreateFromHtmlImageData( 
   int imageDataWidth,
   int imageDataHeight,
   byte[] imageData
)

            

            
 function Leadtools.Converters.RasterRenderBuffer.CreateFromHtmlImageData( 
   imageDataWidth ,
   imageDataHeight ,
   imageData 
)
public:
static RasterRenderBuffer^ CreateFromHtmlImageData( 
   int imageDataWidth,
   int imageDataHeight,
   array<byte>^ imageData
) 

Parameters

imageDataWidth
The pixel width of the image data. Set this to ImageData.width. Must be a value greater than 0.
imageDataHeight
The pixel height of the image data. Set this to ImageData.height. Must be a value greater than 0.
imageData
The pixels data. Set this to ImageData.data. Must not be null.

Return Value

The newly created RasterRenderBuffer object.
Remarks

This is a helper method that sets the values of the returned RasterRenderBuffer as follows:

Member Value
Width

imageDataWidth

Height

imageDataHeight

BitsPerPixel

32. This is the only value supported in this version and cannot be changed.

Order

RasterByteOrder.Rgb since RGB color data is the format used by HTML Canvas ImageData.

Internal buffer data

This method will call SetDataArray with imageData.

Example

For an example, refer to RasterImageRenderer.

Requirements

Target Platforms

See Also

Reference

RasterRenderBuffer Class
RasterRenderBuffer Members

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.