ImageBuffer.getData Method¶
Module: ImageBuffer
Definition¶
Gets the image buffer data.
get_data(self) -> bytearray
Returns
bytearrayData of the image buffer object.
Exceptions
An error has occurred during Document Library execution.
Uint8List getData()
Returns
Uint8ListData of the image buffer object.
Exceptions
An error has occurred during Document Library execution.
public byte[] GetData()
Returns
byte[]Data of the image buffer object.
Exceptions
An error has occurred during Document Library execution.
public byte[] getData() throws DocumentException
Returns
byte[]Data of the image buffer object.
Exceptions
An error has occurred during Document Library execution.
public func getData() throws -> [UInt8]
Returns
[UInt8]Data of the image buffer object.
Exceptions
An error has occurred during Document Library execution.
int id3DocumentImageBuffer_GetData (
ID3_DOCUMENT_IMAGE_BUFFER hImageBuffer,
unsigned char * data,
int * dataSize)
Parameters
hImageBufferID3_DOCUMENT_IMAGE_BUFFERin Handle to the ImageBuffer object.dataunsigned char *out Data of the image buffer object.dataSizeint *in Size of the ‘data’ buffer. Receives the number of elements in the ‘data’ array.
Returns