YuiImage img = slot.getSlot();
ResourceReference imgRR = new ResourceReference(
DragDropSettings.class, img.getFileName());
ImageResourceInfo imgInfo = new ImageResourceInfo(imgRR);
int imgWidth = imgInfo.getWidth();
int imgHeight = imgInfo.getHeight();
CSSInlineStyle imgStyle = new CSSInlineStyle();
imgStyle.add("background", "url("
+ RequestCycle.get().urlFor(imgRR) + ")");
imgStyle.add("width", imgWidth + "px");