public interface IPartialRawDataLoader
The partial data loader.
Modifier and Type | Method and Description |
---|---|
void |
process(Rectangle rectangle,
byte[] data,
Point start,
Point end)
Processes the loaded data.
|
void |
process(Rectangle rectangle,
byte[] data,
Point start,
Point end,
LoadOptions loadOptions)
Processes the loaded data.
|
void process(Rectangle rectangle, byte[] data, Point start, Point end)
Processes the loaded data.
rectangle
- The data rectangle.data
- The raw data.start
- The start data point. If not equal to (left,top) meaning that it is not full rectangle we have.end
- The end data point. If not equal to (right,bottom) meaning that it is not full rectangle we have.void process(Rectangle rectangle, byte[] data, Point start, Point end, LoadOptions loadOptions)
Processes the loaded data.
rectangle
- The data rectangle.data
- The raw data.start
- The start data point. If not equal to (left,top) meaning that it is not full rectangle we have.end
- The end data point. If not equal to (right,bottom) meaning that it is not full rectangle we have.loadOptions
- The load options.