-
- All Implemented Interfaces:
public interface ThumbnailResolution
Represents the resolution of a thumbnail.
-
-
Method Summary
Modifier and Type Method Description abstract Integer
getWidth()
The width of the thumbnail, in pixels. abstract Integer
getHeight()
The height of the thumbnail, in pixels. abstract String
getPrefix()
The prefix of the thumbnail. abstract int
getBw()
The requested width, in pixels. abstract int
getBh()
The requested height, in pixels. -
-
Method Detail
-
getHeight
@Nullable() abstract Integer getHeight()
The height of the thumbnail, in pixels. (Nullable)
-
getBw
abstract int getBw()
The requested width, in pixels.
- This can differ from the actual width because images are not stretched.
-
getBh
abstract int getBh()
The requested height, in pixels.
- This can differ from the actual width because images are not stretched.
-
-
-
-