*** image_exact.module.bak Thu Aug 3 15:14:57 2006 --- image_exact.module Sat Aug 5 12:54:37 2006 *************** *** 103,109 **** } function image_exact_resize($source, $destination, $final_w, $final_h) { ! if (file_exists($source)) { $source_info = image_get_info($source); $source_ar = $source_info['width'] / $source_info['height']; if ($source_info['width'] > $final_w && $source_info['height'] > $final_h) { --- 103,109 ---- } function image_exact_resize($source, $destination, $final_w, $final_h) { ! if (file_exists($source) && getimagesize($source)) { $source_info = image_get_info($source); $source_ar = $source_info['width'] / $source_info['height']; if ($source_info['width'] > $final_w && $source_info['height'] > $final_h) { *************** *** 131,137 **** drupal_set_message("Image_exact: Image resize failed.","error"); } } else { ! drupal_set_message('image_exact: File does not exist.','error'); } } ?> --- 131,137 ---- drupal_set_message("Image_exact: Image resize failed.","error"); } } else { ! drupal_set_message('image_exact: File does not exist or is not a valid image.','error'); } } ?>