- row
- The number of the row to update. The first row is 0, and the last row is 1 less than the image height.
- buffer
- Pointer to unmanaged memory buffer containing the image data. The buffer should contain uncompressed data regardless of whether the image is compressed or not.
- bufferCount
- Number of bytes to set. Use the BytesPerLine property of thiss RasterImage to determine the byte count of each line.
Visual Basic (Declaration) | |
---|---|
Overloads Public Function SetRow( _ ByVal row As Integer, _ ByVal buffer As IntPtr, _ ByVal bufferCount As Integer _ ) As Integer |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As RasterImage Dim row As Integer Dim buffer As IntPtr Dim bufferCount As Integer Dim value As Integer value = instance.SetRow(row, buffer, bufferCount) |
Parameters
- row
- The number of the row to update. The first row is 0, and the last row is 1 less than the image height.
- buffer
- Pointer to unmanaged memory buffer containing the image data. The buffer should contain uncompressed data regardless of whether the image is compressed or not.
- bufferCount
- Number of bytes to set. Use the BytesPerLine property of thiss RasterImage to determine the byte count of each line.
Return Value
The number of bytes copied.The image memory must be locked when you use this method. Normally, you can call Access to lock the memory before starting an operation that uses this method, then call Release when the operation is finished.
You can use the BitsPerPixel property of the image to determine the number of bytes to set the bufferCount parameter. If the image is 8-bit then each byte is an index to the palette. If the image is a 24-bit image, then each three bytes represents one pixel element. Color order is determined by the Order property of the RasterImage object. This value can be RasterByteOrder.Rgb, RasterByteOrder.Bgr, or RasterByteOrder.Romm.
RasterByteOrder.Gray is only valid for 12 and 16-bit grayscale images. Support for 12 and 16-bit grayscale images is only available in the Document/Medical Imaging editions.
For more information, refer to Introduction to Image Processing With LEADTOOLS.
Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only), Windows Phone 7