function file_validate_is_image in Drupal 6
Same name and namespace in other branches
- 8 core/modules/file/file.module \file_validate_is_image()
- 7 includes/file.inc \file_validate_is_image()
- 9 core/modules/file/file.module \file_validate_is_image()
- 10 core/modules/file/file.module \file_validate_is_image()
Check that the file is recognized by image_get_info() as an image.
Parameters
$file: A Drupal file object.
Return value
An array. If the file is not an image, it will contain an error message.
Related topics
File
- includes/
file.inc, line 800 - API for handling file uploads and server file management.
Code
function file_validate_is_image(&$file) {
$errors = array();
$info = image_get_info($file->filepath);
if (!$info || empty($info['extension'])) {
$errors[] = t('Only JPEG, PNG and GIF images are allowed.');
}
return $errors;
}