public static interface TileCapture.Callback
| Modifier and Type | Method and Description |
|---|---|
boolean |
onCaptureTile(android.graphics.Bitmap tile,
int tileNum,
int tileColumn,
int tileRow)
Tile has been captured
|
boolean |
onStartCapture(int numTiles,
int tileWidth,
int tileHeight,
int fullWidth,
int fullHeight)
Capture process started - this is where you would create your
destination file based on the arguments provided
|
boolean onStartCapture(int numTiles,
int tileWidth,
int tileHeight,
int fullWidth,
int fullHeight)
numTiles - The total number of tiles being capturedtileWidth - Tile width in pixelstileHeight - Tile height in pixelsfullWidth - Full capture width in pixelsfullHeight - Full capture height in pixelsboolean onCaptureTile(android.graphics.Bitmap tile,
int tileNum,
int tileColumn,
int tileRow)
tile - Tile bitmaptileNum - The tile number (out of the total number of tiles)tileColumn - Tile columntileRow - Tile row