aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2003-06-02 20:21:28 +0000
committerJeremias Maerki <jeremias@apache.org>2003-06-02 20:21:28 +0000
commit51e693924904d93916f7f662d864cae0fa1a9bf0 (patch)
tree19b02a41947793467a17db252826eb79a30adba1
parent0cec290c948501b054f5f8288933c71b40fd0850 (diff)
downloadxmlgraphics-fop-51e693924904d93916f7f662d864cae0fa1a9bf0.tar.gz
xmlgraphics-fop-51e693924904d93916f7f662d864cae0fa1a9bf0.zip
Adjust to changes in Batik CVS
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196485 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/java/org/apache/fop/svg/PDFImageElementBridge.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/java/org/apache/fop/svg/PDFImageElementBridge.java b/src/java/org/apache/fop/svg/PDFImageElementBridge.java
index b5222f657..5507dbe22 100644
--- a/src/java/org/apache/fop/svg/PDFImageElementBridge.java
+++ b/src/java/org/apache/fop/svg/PDFImageElementBridge.java
@@ -176,6 +176,18 @@ public class PDFImageElementBridge extends SVGImageElementBridge {
}
return null;
}
+
+ /**
+ * Returns the bounds of the sensitive area covered by this node,
+ * This includes the stroked area but does not include the effects
+ * of clipping, masking or filtering.
+ * @return the bounds of the sensitive area
+ */
+ public Rectangle2D getSensitiveBounds() {
+ //No interactive features, just return primitive bounds
+ return getPrimitiveBounds();
+ }
+
}
}