]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Adjust to changes in Batik CVS
authorJeremias Maerki <jeremias@apache.org>
Mon, 2 Jun 2003 20:21:28 +0000 (20:21 +0000)
committerJeremias Maerki <jeremias@apache.org>
Mon, 2 Jun 2003 20:21:28 +0000 (20:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196485 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/svg/PDFImageElementBridge.java

index b5222f65779ab9a6cf1f2eda5a332ebddb4fc137..5507dbe220ba2a86c9ab89602351678ac90fbba1 100644 (file)
@@ -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();
+        }
+
     }
 
 }