Interface CardBitmap
-
public interface CardBitmap
CardBitmap provides the size and bitmap resource of the card art.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getFileType()
Fetch the file type of the bitmap image.byte[]
getResource()
Fetch the bitmap resource.CardArtSize
getSize()
Fetch the card art size.
-
-
-
Method Detail
-
getSize
CardArtSize getSize()
Fetch the card art size.- Returns:
- the size of the card art.
-
getResource
byte[] getResource()
Fetch the bitmap resource.- Returns:
- bitmap image bytes.
-
getFileType
java.lang.String getFileType()
Fetch the file type of the bitmap image.- Returns:
- the file type of the image
-
-