*
* @see de.miethxml.kabeja.dxf.DXFEntity#getBounds()
*/
public Bounds getBounds() {
Bounds b = new Bounds();
DXFImageDefObject imageDef = (DXFImageDefObject) this.doc.getDXFObjectByID(this.getImageDefObjectID());
if (imageDef != null) {
b.addToBounds(this.insertPoint);
b.addToBounds(insertPoint.getX() + imageSizeAlongU,
insertPoint.getY() + imageSizeAlongV, this.insertPoint.getZ());