wppaste
WordPress

image_get_intermediate_size( int $post_id, string|int[] $size = 'thumbnail' ): array|false

Since
2.5.0
Source
wp-includes/media.php:780
Retrieves the image's intermediate size (resized) path, width, and height.

Description

The $size parameter can be an array with the width and height respectively.
If the size matches the 'sizes' metadata array for width and height, then it will be used. If there is no direct match, then the nearest image size larger than the specified size will be used. If nothing is found, then the function will break out and return false.

The metadata 'sizes' is used for compatible sizes that can be used for the parameter $size value.

The url path will be given, when the $size parameter is a string.

If you are passing an array for the $size, you should consider using add_image_size() so that a cropped version is generated. It's much more efficient than having to find the closest-sized image and then having the browser scale down the image.

Compatibility

WordPress
since 2.5.0
PHP
7.4–8.6-dev
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.

Parameters

$post_idint
Attachment ID.
$sizestring|int[]optional
Image size. Accepts any registered image size name, or an array of width and height values in pixels (in that order). Default 'thumbnail'.Default: 'thumbnail'

Return value

array|false
Array of file relative path, width, and height on success. Additionally includes absolute path and URL if registered size is passed to $size parameter. False on failure.
  • $filestring

    Filename of image.
  • $widthint

    Width of image in pixels.
  • $heightint

    Height of image in pixels.
  • $pathstring

    Path of image relative to uploads directory.
  • $urlstring

    URL of image.

Performance profile

How much work a call to image_get_intermediate_size() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.

Cost class
Heavy

Reaches the database via get_post().

Scaling
Scales with input

The body loops, so the work grows with what you pass in.

Instructions
8–129

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 201.

Plugin surface
1 hook

Third-party callbacks on 'image_get_intermediate_size' run inside this call, and their cost is not bounded by anything here.

Called by
3

3 places in core call this, so the cost is paid more often than your own code shows.

What it touches

  • hookthird-party callbacksapply_filters()called directly
  • querycontent queryget_post()one call below image_get_intermediate_size()
  • optionoption read or writeget_option()one call below image_get_intermediate_size()

Further down the call graph this can also reach cache, serialize and transient. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.

What one call costs · 12 distinct outcomes

One number would be a lie: the work depends on which branch runs. These are every distinct cost image_get_intermediate_size() can have, taken from its control-flow graph on PHP 8.5.

WhenInstructionsCalls it makes
always8–71wp_get_attachment_metadata()
is_array($imagedata) && !empty($imagedata) && !is_array($size) && !empty($data)28–35wp_get_attachment_metadata(), apply_filters()
is_array($imagedata) && !empty($imagedata) && is_array($size) && !empty($candidates) && empty($data)50–83wp_get_attachment_metadata(), array_shift(), image_constrain_size_for_editor()
is_array($imagedata) && !empty($imagedata) && is_array($size) && !empty($candidates) && empty($data)53–86wp_get_attachment_metadata(), ksort(), array_shift(), image_constrain_size_for_editor()
is_array($imagedata) && !empty($imagedata) && !is_array($size)55–58wp_get_attachment_metadata(), wp_get_attachment_url(), path_join(), path_join(), apply_filters()
is_array($imagedata) && !empty($imagedata) && is_array($size) && !empty($candidates) && !empty($data)58–95wp_get_attachment_metadata(), array_shift(), image_constrain_size_for_editor(), apply_filters()
is_array($imagedata) && !empty($imagedata) && is_array($size) && empty($candidates) && !empty($value) && empty($data)61–94wp_get_attachment_metadata(), image_constrain_size_for_editor()
is_array($imagedata) && !empty($imagedata) && is_array($size) && !empty($candidates) && !empty($data)61–98wp_get_attachment_metadata(), ksort(), array_shift(), image_constrain_size_for_editor(), apply_filters()
is_array($imagedata) && !empty($imagedata) && is_array($size) && empty($candidates) && !empty($value) && !empty($data)69–106wp_get_attachment_metadata(), image_constrain_size_for_editor(), apply_filters()
is_array($imagedata) && !empty($imagedata) && is_array($size) && !empty($candidates)85–118wp_get_attachment_metadata(), array_shift(), image_constrain_size_for_editor(), wp_get_attachment_url(), path_join(), path_join(), apply_filters()
is_array($imagedata) && !empty($imagedata) && is_array($size) && !empty($candidates)88–121wp_get_attachment_metadata(), ksort(), array_shift(), image_constrain_size_for_editor(), wp_get_attachment_url(), path_join(), path_join(), apply_filters()
is_array($imagedata) && !empty($imagedata) && is_array($size) && empty($candidates) && !empty($value)96–129wp_get_attachment_metadata(), image_constrain_size_for_editor(), wp_get_attachment_url(), path_join(), path_join(), apply_filters()

Across PHP versions

PHPCompiledExecutedBranchesNotes
8.6-dev2018–12925
8.52018–12925
8.42018–129254 fewer instructions than PHP 8.3
8.32058–13325
8.22058–13325
8.12058–13325
7.42058–13325

An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.

Hooks and filters fired · 1

One hook fires while image_get_intermediate_size() runs, in this order:

  1. apply_filters( image_get_intermediate_size )filterline 870 (+90 into the body)

    Filters the output of image_get_intermediate_size()

Uses · 6

Used by · 3

Source code

function image_get_intermediate_size( $post_id, $size = 'thumbnail' ) {	$imagedata = wp_get_attachment_metadata( $post_id ); 	if ( ! $size || ! is_array( $imagedata ) || empty( $imagedata['sizes'] ) ) {		return false;	} 	$data = array(); 	// Find the best match when '$size' is an array.	if ( is_array( $size ) ) {		$candidates = array(); 		if ( ! isset( $imagedata['file'] ) && isset( $imagedata['sizes']['full'] ) ) {			$imagedata['height'] = $imagedata['sizes']['full']['height'];			$imagedata['width']  = $imagedata['sizes']['full']['width'];		} 		foreach ( $imagedata['sizes'] as $_size => $data ) {			// If there's an exact match to an existing image size, short circuit.			if ( (int) $data['width'] === (int) $size[0] && (int) $data['height'] === (int) $size[1] ) {				$candidates[ $data['width'] * $data['height'] ] = $data;				break;			} 			// If it's not an exact match, consider larger sizes with the same aspect ratio.			if ( $data['width'] >= $size[0] && $data['height'] >= $size[1] ) {				// If '0' is passed to either size, we test ratios against the original file.				if ( 0 === $size[0] || 0 === $size[1] ) {					$same_ratio = wp_image_matches_ratio( $data['width'], $data['height'], $imagedata['width'], $imagedata['height'] );				} else {					$same_ratio = wp_image_matches_ratio( $data['width'], $data['height'], $size[0], $size[1] );				} 				if ( $same_ratio ) {					$candidates[ $data['width'] * $data['height'] ] = $data;				}			}		} 		if ( ! empty( $candidates ) ) {			// Sort the array by size if we have more than one candidate.			if ( 1 < count( $candidates ) ) {				ksort( $candidates );			} 			$data = array_shift( $candidates );			/*			* When the size requested is smaller than the thumbnail dimensions, we			* fall back to the thumbnail size to maintain backward compatibility with			* pre 4.6 versions of WordPress.			*/		} elseif ( ! empty( $imagedata['sizes']['thumbnail'] ) && $imagedata['sizes']['thumbnail']['width'] >= $size[0] && $imagedata['sizes']['thumbnail']['width'] >= $size[1] ) {			$data = $imagedata['sizes']['thumbnail'];		} else {			return false;		} 		// Constrain the width and height attributes to the requested values.		list( $data['width'], $data['height'] ) = image_constrain_size_for_editor( $data['width'], $data['height'], $size ); 	} elseif ( ! empty( $imagedata['sizes'][ $size ] ) ) {		$data = $imagedata['sizes'][ $size ];	} 	// If we still don't have a match at this point, return false.	if ( empty( $data ) ) {		return false;	} 	// Include the full filesystem path of the intermediate file.	if ( empty( $data['path'] ) && ! empty( $data['file'] ) && ! empty( $imagedata['file'] ) ) {		$file_url     = wp_get_attachment_url( $post_id );		$data['path'] = path_join( dirname( $imagedata['file'] ), $data['file'] );		$data['url']  = path_join( dirname( $file_url ), $data['file'] );	} 	/**	 * Filters the output of image_get_intermediate_size()	 *

Changelog

Introduced in 2.5.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.8.8 tag, from src/wp-includes/media.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.