Index: class_image.inc
===================================================================
--- class_image.inc	(revision 427)
+++ class_image.inc	(working copy)
@@ -65,30 +65,6 @@
     return '<div class="acidfree-cell">' . $imagediv . "</div>";
 }
 
-function _acidfree_image_show_exif_data(&$node) {
-    $node->content['exif_data'] = array(
-            '#value' => theme('acidfree_exif_data', $node),
-            '#weight' => 10,
-        );
-}
-
-function theme_acidfree_exif_data(&$node) {
-    $output = '<div id="acidfree-exif-data"><h3>'.t('EXIF data:').'</h3>';
-    $largefile = file_create_path($node->images['_original']);
-    if ($largefile && file_exists($largefile)) {
-        $exif = exif_read_data($largefile, 0, true);
-        foreach ($exif as $key => $section) {
-            foreach ($section as $name => $val) {
-                $output .= "$key.$name: $val<br />\n";
-            }
-        }
-    } else {
-        $output .= t('no exif data');
-    }
-    $output .= '</div>';
-    return $output;
-}
-
 function _class_image_rotate(&$node) {
     if ($node->rotate != 0) {
         _image_remove($node);
Index: acidfree.module
===================================================================
--- acidfree.module	(revision 432)
+++ acidfree.module	(working copy)
@@ -532,9 +532,6 @@
                 drupal_set_breadcrumb(acidfree_make_breadcrumbs($node));
                 _acidfree_add_pager($node);
             }
-            if ($node->type == 'image' && variable_get('acidfree_show_exif_data', false)) {
-                _acidfree_image_show_exif_data($node);
-            }
         }
         break;
     case "rss item":
@@ -639,11 +636,6 @@
             '#default_value' => variable_get('acidfree_num_thumbs', 15),
             '#description' => t('Enter 0 for unlimited')
         );
-    $form['display']['acidfree_show_exif_data'] = array(
-            '#type' => 'checkbox',
-            '#title' => t('Show EXIF data in full image view'),
-            '#default_value' => variable_get('acidfree_show_exif_data', false),
-        );
     $form['display']['acidfree_filter_caption'] = array(
             '#type' => 'checkbox',
             '#title' => t('Show image title as default caption for inline images'),
