this.noAnswer = noAnswer;
}
@Override
public void copyAndScaleImage(File srcImage, String scale) {
Integer width = new ImageTag(null).getScale(scale);
if (srcImage.exists()) {
File destinationPath = new File(this.imagePath, FilenameUtils.getName(srcImage.getPath()));
if (!destinationPath.exists()) {
try {
if (width == null && Utilities.getImageWidth(srcImage) > PAGE_WIDTH) {