diff --git a/deploy.core.inc b/deploy.core.inc
index b9b763c..45e1958 100755
--- a/deploy.core.inc
+++ b/deploy.core.inc
@@ -99,7 +99,7 @@ function taxonomy_deploy_field_dependencies($entity_type, $entity, $field, $inst
 }
 
 /**
- * Implements hook_deploy_field_dependency().
+ * Implements hook_deploy_field_dependencies().
  */
 function file_deploy_field_dependencies($entity_type, $entity, $field, $instance, $langcode, $items) {
   $dependencies = array();
@@ -139,6 +139,20 @@ function entityreference_deploy_field_dependencies($entity_type, $entity, $field
 }
 
 /**
+ * Implements hook_deploy_field_dependencies().
+ */
+function image_deploy_field_dependencies($entity_type, $entity, $field, $instance, $langcode, $items) {
+  return file_deploy_field_dependencies($entity_type, $entity, $field, $instance, $langcode, $items);
+}
+
+/**
+ * Implements hook_deploy_field_alter().
+ */
+function image_deploy_field_alter($entity_type, &$entity, $field, $instance, $langcode, &$items) {
+  file_deploy_field_alter($entity_type, $entity, $field, $instance, $langcode, $items);
+}
+
+/**
  * @} End of "Field dependency implementations"
  */
 
