file_is_displayable_image( string $path )

Validate that file is suitable for displaying within a web page.


Description Description


Parameters Parameters

$path

(string) (Required) File path to test.


Top ↑

Return Return

(bool) True if suitable, false if not suitable.


Top ↑

Source Source

File: wp-admin/includes/image.php

function file_is_displayable_image( $path ) {
	$displayable_image_types = array( IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_BMP );

	// IMAGETYPE_ICO is only defined in PHP 5.3+.
	if ( defined( 'IMAGETYPE_ICO' ) ) {
		$displayable_image_types[] = IMAGETYPE_ICO;
	}

	$info = @getimagesize( $path );
	if ( empty( $info ) ) {
		$result = false;
	} elseif ( ! in_array( $info[2], $displayable_image_types ) ) {
		$result = false;
	} else {
		$result = true;
	}

	/**
	 * Filters whether the current image is displayable in the browser.
	 *
	 * @since 2.5.0
	 *
	 * @param bool   $result Whether the image can be displayed. Default true.
	 * @param string $path   Path to the image.
	 */
	return apply_filters( 'file_is_displayable_image', $result, $path );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.5.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.