wp_read_image_metadata() WP 2.5.0

Збирає масив корисних метаданих картинки з метаданих файлів exif та iptc.

Примітка: Метадані подібного роду (у файлах картинок) зазвичай вирізані і зазвичай (приблизно у 95% випадків) ця функція повертає порожні дані. Зазвичай метадані зберігаються в оригінальних фотографіях, необроблених, стиснутих.

Для роботи функції на фронті потрібно підключити файл:

require_once ABSPATH. 'wp-admin/includes/image.php';

Дані, які можуть бути зібрані (якщо вони є у файлі):

$meta = array(
	'aperture' => 0,
	'credit' => '',
	'camera' => '',
	'caption' => '',
	'created_timestamp' => 0,
	'copyright' => '',
	'focal_length' => 0,
	'iso' => 0,
	'shutter_speed' => 0,
	'title' => '',
	'orientation' => 0,
	'keywords' => array(),
);

З EXIF ​​отримує:

credit
camera
caption
copyright
iso created_timestamp
focal_length
shutter_speed
title

З IPTC отримує:

credit
byline
created date-time
caption
copyright
title
Основа для:
media_handle_sideload()
1 раз – 0.000342 сек
(швидко) | 50000 разів – 4.38 сек
(швидко) |
PHP 7.0.32, WP 5.1.1

Повертає

Массив|false. Масив метаданих зображення або false, якщо файл не існує або не вдалося отримати його метадані.

Використання

wp_read_image_metadata( $file );
$file
(рядок) (обов’язковий)
Абсолютний шлях до файлу зображення, метаданого якого потрібно отримати.

Приклади

0

#1 Приклад вилучення метаданих картинки

require_once ABSPATH. 'wp-admin/includes/image.php'; // для фронту

$image_path = $_SERVER['DOCUMENT_ROOT'] . '/wp-content/uploads/2019/03/Screenshot_5.jpg';

$meta = wp_read_image_metadata( $image_path );

/*
$meta = Array (
	[aperture] => 0
	[credit] =>
	[camera] =>
	 => 'Image short description'
	[created_timestamp] => 0
	[copyright] =>
	[focal_length] => 0
	[iso] => 0
	[shutter_speed] => 0
	[title] => 'Image title'
	[orientation] => 1
	[keywords] => Array()
)
*/

список змін

З версії 2.5.0Введено.

Код wp_read_image_metadata() WP 6.0.2

function wp_read_image_metadata( $file ) {
	if ( ! file_exists( $file ) ) {
		return false;
	}

	list( , , $image_type ) = wp_getimagesize( $file );

	/*
	 * EXIF ​​contains a banda of data we'll probably never need formatted in ways
	 * Що є difficult to use. We'll normalize it and just extract the fields
	 * that are likely to be useful. Fractions and numbers are converted to
	 * floats, datas до unix timestamps, і everything else to strings.
	 */
	$meta = array(
		'aperture' => 0,
		'credit' => '',
		'camera' => '',
		'caption' => '',
		'created_timestamp' => 0,
		'copyright' => '',
		'focal_length' => 0,
		'iso' => 0,
		'shutter_speed' => 0,
		'title' => '',
		'orientation' => 0,
		'keywords' => array(),
	);

	$iptc = array();
	$ info = array();
	/*
	 * Read IPTC перша, нібито його максимальний вміст недоступний в режимі such
	 * as caption, description etc.
	 */
	if ( is_callable( 'iptcparse' ) ) {
		wp_getimagesize($file, $info);

		if ( ! empty( $info['APP13'] ) ) {
			// Не може бути помилок, коли в режимі debug, unless running unit tests.
			if ( defined( 'WP_DEBUG' ) && WP_DEBUG
				&&! defined( 'WP_RUN_CORE_TESTS' )
			) {
				$iptc = iptcparse( $info['APP13'] );
			} else {
				// phpcs:ignore WordPress.PHP.NoSilencedErrors -- Silencing notice and warning is intentional. See https://core.trac.wordpress.org/ticket/42480
				$iptc = @iptcparse( $info['APP13'] );
			}

			if ( ! is_array( $iptc ) ) {
				$iptc = array();
			}

			// Headline, "A brief synopsis of the caption".
			if ( ! empty( $iptc['2#105'][0] ) ) {
				$meta['title'] = trim( $iptc['2#105'][0] );
				/*
				* Title, "Якщо використовуйте Title field to store the filename of the image,
				* Через те, що поля можуть бути використані в багатьох випадках".
				*/
			} elseif ( ! empty( $iptc['2#005'][0] ) ) {
				$meta['title'] = trim( $iptc['2#005'][0] );
			}

			if ( ! empty( $iptc['2#120'][0] ) ) { // Description / legacy caption.
				$ caption = trim ($ iptc ['2 # 120'] [0]);

				mbstring_binary_safe_encoding();
				$ caption_length = strlen ($ caption);
				reset_mbstring_encoding();

				if ( empty( $meta['title'] ) && $caption_length < 80 ) {
					// Assume the title is stored in 2:120 if it's short.
					$meta['title'] = $caption;
				}

				$meta['caption'] = $caption;
			}

			if ( ! empty( $iptc['2#110'][0] ) ) { // Credit.
				$meta['credit'] = trim( $iptc['2#110'][0] );
			} elseif ( ! empty( $iptc['2#080'][0] ) ) { // Creator / legacy byline.
				$meta['credit'] = trim( $iptc['2#080'][0] );
			}

			if ( ! empty( $iptc['2#055'][0] ) && ! empty( $iptc['2#060'][0] ) ) { // Created date and time.
				$meta['created_timestamp'] = strtotime( $iptc['2#055'][0] . ' ' . $iptc['2#060'][0] );
			}

			if ( ! empty( $iptc['2#116'][0] ) ) { // Copyright.
				$meta['copyright'] = trim( $iptc['2#116'][0] );
			}

			if ( ! empty( $iptc['2#025'][0] ) ) { // Keywords array.
				$meta['keywords'] = array_values( $iptc['2#025'] );
			}
		}
	}

	$exif = array();

	/**
	 * Filters image types to check for exif data.
	 *
	 * @ Since 2.5.0
	 *
	 * @param int[] $image_types Array of image types to check for exif data. Each value
	 * is usually one of the `IMAGETYPE_*` constants.
	 */
	$exif_image_types = apply_filters( 'wp_read_image_metadata_types', array( IMAGETYPE_JPEG, IMAGETYPE_TIFF_II, IMAGETYPE_TIFF_MM ) );

	if ( is_callable( 'exif_read_data' ) && in_array( $image_type, $exif_image_types, true ) ) {
		// Не може бути помилок, коли в режимі debug, unless running unit tests.
		if ( defined( 'WP_DEBUG' ) && WP_DEBUG
			&&! defined( 'WP_RUN_CORE_TESTS' )
		) {
			$ exif = exif_read_data ($ file);
		} else {
			// phpcs:ignore WordPress.PHP.NoSilencedErrors -- Silencing notice and warning is intentional. See https://core.trac.wordpress.org/ticket/42480
			$ exif = @ exif_read_data ( $ file );
		}

		if ( ! is_array ( $ exif ) ) {
			$exif = array();
		}

		if ( ! empty( $exif['ImageDescription'] ) ) {
			mbstring_binary_safe_encoding();
			$description_length = strlen( $exif['ImageDescription'] );
			reset_mbstring_encoding();

			if ( empty( $meta['title'] ) && $description_length < 80 ) {
				// Assume the title is stored in ImageDescription.
				$meta['title'] = trim( $exif['ImageDescription'] );
			}

			if ( empty( $meta['caption'] ) && ! empty( $exif['COMPUTED']['UserComment'] ) ) {
				$meta['caption'] = trim( $exif['COMPUTED']['UserComment'] );
			}

			if ( empty( $meta['caption'] ) ) {
				$meta['caption'] = trim( $exif['ImageDescription'] );
			}
		} elseif ( empty( $meta['caption'] ) && ! empty( $exif['Comments'] ) ) {
			$meta['caption'] = trim( $exif['Comments'] );
		}

		if ( empty( $meta['credit'] ) ) {
			if ( ! empty( $exif['Artist'] ) ) {
				$meta['credit'] = trim( $exif['Artist'] );
			} elseif ( ! empty( $exif['Author'] ) ) {
				$meta['credit'] = trim( $exif['Author'] );
			}
		}

		if ( empty( $meta['copyright'] ) && ! empty( $exif['Copyright'] ) ) {
			$meta['copyright'] = trim( $exif['Copyright'] );
		}
		if ( ! empty( $exif['FNumber'] ) && is_scalar( $exif['FNumber'] ) ) {
			$meta['aperture'] = round( wp_exif_frac2dec( $exif['FNumber'] ), 2);
		}
		if ( ! empty( $exif['Model'] ) ) {
			$meta['camera'] = trim( $exif['Model'] );
		}
		if ( empty( $meta['created_timestamp'] ) && ! empty( $exif['DateTimeDigitized'] ) ) {
			$meta['created_timestamp'] = wp_exif_date2ts( $exif['DateTimeDigitized'] );
		}
		if ( ! empty( $exif['FocalLength'] ) ) {
			$meta['focal_length'] = (string) $exif['FocalLength'];
			if ( is_scalar( $exif['FocalLength'] ) ) {
				$meta['focal_length'] = (string) wp_exif_frac2dec( $exif['FocalLength'] );
			}
		}
		if ( ! empty( $exif['ISOSpeedRatings'] ) ) {
			$meta['iso'] = is_array( $exif['ISOSpeedRatings'] ) ? reset( $exif['ISOSpeedRatings'] ) : $exif['ISOSpeedRatings'];
			$meta['iso'] = trim($meta['iso']);
		}
		if ( ! empty( $exif['ExposureTime'] ) ) {
			$meta['shutter_speed'] = (string) $exif['ExposureTime'];
			if ( is_scalar( $exif['ExposureTime'] ) ) {
				$meta['shutter_speed'] = (string) wp_exif_frac2dec( $exif['ExposureTime'] );
			}
		}
		if ( ! empty( $exif['Orientation'] ) ) {
			$meta['orientation'] = $exif['Orientation'];
		}
	}

	foreach ( array( 'title', 'caption', 'credit', 'copyright', 'camera', 'iso' ) as $key ) {
		if ( $meta[ $key ] && ! seems_utf8( $meta[ $key ] ) ) {
			$meta[ $key ] = utf8_encode( $meta[ $key ] );
		}
	}

	foreach ( $meta['keywords'] as $key => $keyword ) {
		if ( ! seems_utf8( $keyword ) ) {
			$meta['keywords'][ $key ] = utf8_encode( $keyword );
		}
	}

	$meta = wp_kses_post_deep($meta);

	/**
	 * Filters array of meta data read from 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 Тип зображення, один з 'IMAGETYPE_XXX' constants.
	 * @param array $iptc IPTC data.
	 * @param array $exif EXIF ​​data.
	 */
	return apply_filters( 'wp_read_image_metadata', $meta, $file, $image_type, $iptc, $exif);

}

Залишити відповідь

Ваша e-mail адреса не оприлюднюватиметься. Обов’язкові поля позначені *