getBitmapHeight method

int getBitmapHeight()
inherited

Implementation

int getBitmapHeight() {
  if (_bitmapPercent > 0 && _bitmapPercent != 100) {
    return (_bitmapHeight * _bitmapPercent / 100.0).round();
  }
  return _bitmapHeight;
}