Index: /trunk/src/org/openstreetmap/josm/data/gpx/GpxImageEntry.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/data/gpx/GpxImageEntry.java	(revision 17564)
+++ /trunk/src/org/openstreetmap/josm/data/gpx/GpxImageEntry.java	(revision 17565)
@@ -552,5 +552,6 @@
     public BBox getBBox() {
         // new BBox(LatLon) is null safe.
-        return new BBox(this.getExifCoor());
+        // Use `getPos` instead of `getExifCoor` since the image may be coorelated against a GPX track
+        return new BBox(this.getPos());
     }
 
