Leadtools.CF Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.6.15
FeedLoad Method
See Also 
Leadtools.Codecs Namespace > RasterCodecs Class : FeedLoad Method



data
The image file data.
offset
Offset from the beginning of the buffer to where the image data starts.
count
Total size (in bytes) of the image data.
data
The image file data.
offset
Offset from the beginning of the buffer to where the image data starts.
count
Total size (in bytes) of the image data.
Supplies image data to the file-load process from a buffer that you provide.

Syntax

Visual Basic (Declaration) 
Public Sub FeedLoad( _
   ByVal data() As Byte, _
   ByVal offset As Integer, _
   ByVal count As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterCodecs
Dim data() As Byte
Dim offset As Integer
Dim count As Integer
 
instance.FeedLoad(data, offset, count)
C# 
public void FeedLoad( 
   byte[] data,
   int offset,
   int count
)
C++/CLI 
public:
void FeedLoad( 
   array<byte>^ data,
   int offset,
   int count
) 

Parameters

data
The image file data.
offset
Offset from the beginning of the buffer to where the image data starts.
count
Total size (in bytes) of the image data.

Example

For an example, refer to StartFeedLoad.

Remarks

Use this method with the StartFeedLoad and StopFeedLoad methods.

For a description of how the methods relate to each other, refer to StartFeedLoad.

For more information, refer to Loading and Saving Images.

For more information, refer to Loading and Saving Large Tiff Files.

For more information, refer to Loading and Saving Large Tiff Files.

Requirements

Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6

See Also