{
final double x = (int) StrictGeomUtility.toExternalValue(content.getX());
final double y = (int) StrictGeomUtility.toExternalValue(content.getY());
final double width = (int) StrictGeomUtility.toExternalValue(content.getWidth());
final double height = (int) StrictGeomUtility.toExternalValue(content.getHeight());
final Drawable d = (Drawable) o;
final Graphics2D g2Clone = (Graphics2D) g2.create();
d.draw(g2Clone, new Rectangle2D.Double(x,y,width, height));
g2Clone.dispose();
}
}