Description
Filters the array of meta data read from an image's exif data.
Occurrences
Filename | Line Number |
---|---|
wp-admin/includes/image.php | 1040 |
Parameters
Type | Name | Description |
---|---|---|
array | $meta | Image meta data. |
string | $file | Path to image file. |
int | $image_type | Type of image, one of the `IMAGETYPE_XXX` constants. |
array | $iptc | IPTC data. |
array | $exif | EXIF data. |
PHP Doc
/**
* Filters the array of meta data read from an image's exif data.
*
* @since 2.5.0
* @since 4.4.0 The `$iptc` parameter was added.
* @since 5.0.0 The `$exif` parameter was added.
*
* @param array $meta Image meta data.
* @param string $file Path to image file.
* @param int $image_type Type of image, one of the `IMAGETYPE_XXX` constants.
* @param array $iptc IPTC data.
* @param array $exif EXIF data.
*/