Class GeoPackageTile
- java.lang.Object
-
- mil.nga.geopackage.tiles.retriever.GeoPackageTile
-
public class GeoPackageTile extends Object
GeoPackage tile wrapper containing tile dimensions and raw image bytes- Since:
- 1.2.0
-
-
Constructor Summary
Constructors Constructor Description GeoPackageTile(int width, int height, byte[] data)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BitmapgetBitmap()Get image bitmapbyte[]getData()Get image dataintgetHeight()Get heightintgetWidth()Get width
-
-
-
Method Detail
-
getWidth
public int getWidth()
Get width- Returns:
- width
-
getHeight
public int getHeight()
Get height- Returns:
- height
-
getData
public byte[] getData()
Get image data- Returns:
- image data
-
getBitmap
public Bitmap getBitmap()
Get image bitmap- Returns:
- image bitmap
- Since:
- 6.0.0
-
-