* @param paintShadow indicates if the surrounding mortar has a different color
* @param fileName file name of the image to be drawn
*/
private BufferedImage createSlab(Graphics graphics, String text,
String fileName, int reduce, Rectangle bounds) {
IImageLoader loader = new ImagesLoader();
BufferedImage img = loader.loadImage(fileName);
final int destWidth= (int)Math.rint(bounds.getWidth())-reduce;
final int destHight=(int)Math.rint(bounds.getHeight());
float xScale = (float) destWidth / img.getWidth();
float yScale = (float) destHight / img.getHeight();