AWImageInfo imageInfo = resourceManager.imageInfoForName(filename);
String imageUrl = imageUrl(imageInfo, filename);
AWEncodedString width = widthString(bindingsHashtable, imageInfo);
AWEncodedString height = heightString(bindingsHashtable, imageInfo);
String widthString = width.string();
String heightString = height.string();
AWFastStringBuffer fastStringBuffer = new AWFastStringBuffer();
fastStringBuffer.append("<img src=\"");
fastStringBuffer.append(imageUrl);
fastStringBuffer.append("\"");
if (widthString != null) {