wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



image_resize › WordPress Function

Od2.5.0
Przestarzały3.5.0
image_resize ( $file, $max_w, $max_h, $crop = false, $suffix = null, $dest_path = null, $jpeg_quality = 90 )
Parametry: (7)
  • (string) $file Image file path.
    Wymagane: Tak
  • (int) $max_w Maximum width to resize to.
    Wymagane: Tak
  • (int) $max_h Maximum height to resize to.
    Wymagane: Tak
  • (bool) $crop Optional. Whether to crop image or resize. Default false.
    Wymagane: Nie
    Domyślny: false
  • (string) $suffix Optional. File suffix. Default null.
    Wymagane: Nie
    Domyślny: null
  • (string) $dest_path Optional. New image file path. Default null.
    Wymagane: Nie
    Domyślny: null
  • (int) $jpeg_quality Optional. Image quality percentage. Default 90.
    Wymagane: Nie
    Domyślny: 90
Zobacz:
Powrót:
  • (mixed) WP_Error on failure. String with new destination path.
Zdefiniowane na:
Codex:

Scale down an image to fit a particular size and save a new copy of the image.

The PNG transparency will be preserved using the function, as well as the image type. If the file going in is PNG, then the resized image is going to be PNG. The only supported image types are PNG, GIF, and JPEG. Some functionality requires API to exist, so some PHP version may lose out support. This is not the fault of WordPress (where functionality is downgraded, not actual defects), but of your PHP version.


Źródło

function image_resize( $file, $max_w, $max_h, $crop = false, $suffix = null, $dest_path = null, $jpeg_quality = 90 ) {
	_deprecated_function( __FUNCTION__, '3.5.0', 'wp_get_image_editor()' );

	$editor = wp_get_image_editor( $file );
	if ( is_wp_error( $editor ) )
		return $editor;
	$editor->set_quality( $jpeg_quality );

	$resized = $editor->resize( $max_w, $max_h, $crop );
	if ( is_wp_error( $resized ) )
		return $resized;

	$dest_file = $editor->generate_filename( $suffix, $dest_path );
	$saved = $editor->save( $dest_file );

	if ( is_wp_error( $saved ) )
		return $saved;

	return $dest_file;
}