diff --git a/fsl/data/image.py b/fsl/data/image.py
index ab36ce0cbcda566c6cbc66a0978042d6ab8f819a..c6f83c5988b1317ca1e2b691f499d5c339b10d26 100644
--- a/fsl/data/image.py
+++ b/fsl/data/image.py
@@ -22,6 +22,7 @@ and file names:
 .. autosummary::
    :nosignatures:
 
+   canonicalShape
    looksLikeImage
    addExt
    splitExt
@@ -311,10 +312,10 @@ class Nifti(notifier.Notifier, meta.Meta):
          - A sequence/tuple containing the zooms/pixdims.
         """
 
-        # The canonicalShape method figures out
+        # The canonicalShape function figures out
         # the data shape that we should use.
         origShape = list(header.get_data_shape())
-        shape     = imagewrapper.canonicalShape(origShape)
+        shape     = canonicalShape(origShape)
         pixdims   = list(header.get_zooms())
 
         # if get_zooms() doesn't return at
@@ -1318,6 +1319,29 @@ class Image(Nifti):
                 self.notify(topic='dataRange')
 
 
+def canonicalShape(shape):
+    """Calculates a *canonical* shape, how the given ``shape`` should
+    be presented. The shape is forced to be at least three dimensions,
+    with any other trailing dimensions of length 1 ignored.
+    """
+
+    shape = list(shape)
+
+    # Squeeze out empty dimensions, as
+    # 3D image can sometimes be listed
+    # as having 4 or more dimensions
+    for i in reversed(range(len(shape))):
+        if shape[i] == 1: shape = shape[:i]
+        else:             break
+
+    # But make sure the shape
+    # has at 3 least dimensions
+    if len(shape) < 3:
+        shape = shape + [1] * (3 - len(shape))
+
+    return shape
+
+
 def looksLikeImage(filename, allowedExts=None):
     """Returns ``True`` if the given file looks like a NIFTI image, ``False``
     otherwise.
diff --git a/fsl/data/imagewrapper.py b/fsl/data/imagewrapper.py
index edb4df4e40f4174deef08a6f5f57a59076484a3b..5e06d5c889d8d460f7b8c85072ffab07516aabf4 100644
--- a/fsl/data/imagewrapper.py
+++ b/fsl/data/imagewrapper.py
@@ -766,27 +766,13 @@ def canonicalSliceObj(sliceobj, shape):
         return nib.fileslice.canonical_slicers(sliceobj, shape)
 
 
+@deprecation.deprecated(deprecated_in='1.7.0',
+                        removed_in='2.0.0',
+                        details='moved to the fsl.data.image module')
 def canonicalShape(shape):
-    """Calculates a *canonical* shape, how the given ``shape`` should
-    be presented. The shape is forced to be at least three dimensions,
-    with any other trailing dimensions of length 1 ignored.
-    """
-
-    shape = list(shape)
-
-    # Squeeze out empty dimensions, as
-    # 3D image can sometimes be listed
-    # as having 4 or more dimensions
-    for i in reversed(range(len(shape))):
-        if shape[i] == 1: shape = shape[:i]
-        else:             break
-
-    # But make sure the shape
-    # has at 3 least dimensions
-    if len(shape) < 3:
-        shape = shape + [1] * (3 - len(shape))
-
-    return shape
+    """Deprecated - moved to the :mod:`fsl.data.image` module. """
+    from fsl.data.image import canonicalShape
+    return canonicalShape(shape)
 
 
 def expectedShape(sliceobj, shape):