Dimension imageDimension = picture.getImageDimension();
double actualHeight = imageDimension.getHeight();
picture.resize((double) image.height / actualHeight);
}
} catch (IllegalArgumentException e) {
throw new ReportFormattingException("An error occurred while inserting bitmap to xls file", e);
}
}