diff --git a/sites/all/modules/imagecrop/includes/imagecrop.class.inc b/sites/all/modules/imagecrop/includes/imagecrop.class.inc
index 0af9a60..1ecdde0 100755
--- a/sites/all/modules/imagecrop/includes/imagecrop.class.inc
+++ b/sites/all/modules/imagecrop/includes/imagecrop.class.inc
@@ -327,7 +327,7 @@ class ImageCrop {
    */
   public function loadCropSettings() {
 
-    $size = getimagesize(drupal_realpath($this->file->uri));
+    $size = getimagesize($this->file->uri);
     $this->imageWidth = $this->originalImageWidth = $size[0];
     $this->imageHeight = $this->originalImageHeight = $size[1];
 
@@ -539,4 +539,4 @@ class ImageCrop {
 
   }
 
-}
\ No newline at end of file
+}
