@Override public void setAttributes(Map<String, String> attributes) { String filepath = attributes.get("Image Filepath"); if (filepath != null) { image = ResourceManager.getImage(filepath); } }
public ImageRenderer(String filepath) { this(ResourceManager.getImage(filepath)); }